Remove setupTestEnv() from fe_shared_test_classes (#15392)

This commit is contained in:
Vitaliy Urusovskij 2023-01-31 12:41:47 +04:00 committed by GitHub
parent 06063201d5
commit b4cb4fe8c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 0 additions and 11 deletions

View File

@ -16,7 +16,6 @@ std::string FrontEndBasicTest::getTestCaseName(const testing::TestParamInfo<Basi
}
void FrontEndBasicTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -20,7 +20,6 @@ std::string FrontEndConversionExtensionTest::getTestCaseName(
}
void FrontEndConversionExtensionTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
initParamTest();
}

View File

@ -18,7 +18,6 @@ std::string FrontEndConvertModelTest::getTestCaseName(const testing::TestParamIn
}
void FrontEndConvertModelTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -24,7 +24,6 @@ std::string FrontEndCutModelTest::getTestCaseName(const testing::TestParamInfo<C
}
void FrontEndCutModelTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -19,7 +19,6 @@ std::string FrontendLibraryExtensionTest::getTestCaseName(
}
void FrontendLibraryExtensionTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -18,7 +18,6 @@ std::string FrontEndLoadFromTest::getTestCaseName(const testing::TestParamInfo<L
}
void FrontEndLoadFromTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
m_param = GetParam();
}

View File

@ -20,7 +20,6 @@ std::string FrontEndOpExtensionTest::getTestCaseName(const testing::TestParamInf
}
void FrontEndOpExtensionTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
initParamTest();
}

View File

@ -24,7 +24,6 @@ std::string FrontEndFuzzyOpTest::getTestCaseName(const testing::TestParamInfo<Fu
}
void FrontEndFuzzyOpTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -21,7 +21,6 @@ std::string FrontEndPartialShapeTest::getTestCaseName(const testing::TestParamIn
}
void FrontEndPartialShapeTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -15,7 +15,6 @@ std::string FrontEndElementTypeTest::getTestCaseName(const testing::TestParamInf
}
void FrontEndElementTypeTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}

View File

@ -15,7 +15,6 @@ std::string FrontEndTelemetryTest::getTestCaseName(const testing::TestParamInfo<
}
void FrontEndTelemetryTest::SetUp() {
FrontEndTestUtils::setupTestEnv();
m_fem = FrontEndManager(); // re-initialize after setting up environment
initParamTest();
}