remove similar test cases (#21104)

This commit is contained in:
Haiqi Pan
2023-11-16 06:48:26 +00:00
committed by GitHub
parent 76459a316f
commit 4d685194fe
2 changed files with 0 additions and 10 deletions
@@ -269,11 +269,6 @@ TEST_P(OVCompiledModelBaseTest, CanGetInputsInfo) {
EXPECT_NO_THROW(auto inInfo = execNet.inputs());
}
TEST_P(OVCompiledModelBaseTest, CanGetProperty) {
auto execNet = core->compile_model(function, target_device, configuration);
EXPECT_NO_THROW(execNet.get_property(ov::supported_properties));
}
TEST_P(OVCompiledModelBaseTest, CanCreateTwoCompiledModelsAndCheckRuntimeModel) {
std::vector<ov::CompiledModel> vec;
for (size_t i = 0; i < 2; i++) {
@@ -263,11 +263,6 @@ TEST_P(OVClassCompiledModelGetPropertyTest, CanCompileModelWithEmptyProperties)
OV_ASSERT_NO_THROW(core.compile_model(simpleNetwork, target_device, ov::AnyMap{}));
}
TEST_P(OVClassCompiledModelGetPropertyTest, CompileModelWithBigDeviceIDThrows) {
ov::Core core = createCoreWithTemplate();
ASSERT_THROW(core.compile_model(actualNetwork, target_device + ".10"), ov::Exception);
}
TEST_P(OVClassCompiledModelGetIncorrectPropertyTest, GetConfigThrows) {
ov::Core ie = createCoreWithTemplate();
auto compiled_model = ie.compile_model(simpleNetwork, target_device);