Skip to content

Commit b34767b

Browse files
committed
re enable disabled tests
1 parent e9254e1 commit b34767b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sofa/framework/Simulation/Core/test/RequiredPlugin_test.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ struct RequiredPlugin_test : public BaseSimulationTest
8585

8686
void testLoadPluginB()
8787
{
88-
EXPECT_MSG_EMIT(Warning); // // TestPluginB does not register any component
88+
EXPECT_MSG_EMIT(Warning); // TestPluginB does not register any component
8989

9090
std::stringstream scene;
9191
scene << "<?xml version='1.0'?>"
@@ -101,7 +101,7 @@ struct RequiredPlugin_test : public BaseSimulationTest
101101

102102
void testLoadPluginC()
103103
{
104-
EXPECT_MSG_NOEMIT(Warning); // // TestPluginC registers its component explicitly
104+
EXPECT_MSG_NOEMIT(Warning); // TestPluginC registers its component explicitly
105105

106106
std::stringstream scene;
107107
scene << "<?xml version='1.0'?>"
@@ -118,8 +118,8 @@ struct RequiredPlugin_test : public BaseSimulationTest
118118

119119
TEST_F(RequiredPlugin_test, testNotExistingPlugin ) { testNotExistingPlugin(); }
120120
TEST_F(RequiredPlugin_test, testNoParameter ) { testNoParameter(); }
121-
TEST_F(RequiredPlugin_test, DISABLED_testLoadPluginA) { testLoadPluginA(); } // disabled because testLoadPluginA() should throw a warning (but this warning is commented for the moment)
122-
TEST_F(RequiredPlugin_test, DISABLED_testLoadPluginB) { testLoadPluginB(); }// disabled because testLoadPluginB() should throw a warning (but this warning is commented for the moment)
121+
TEST_F(RequiredPlugin_test, testLoadPluginA) { testLoadPluginA(); }
122+
TEST_F(RequiredPlugin_test, testLoadPluginB) { testLoadPluginB(); }
123123
TEST_F(RequiredPlugin_test, testLoadPluginC) { testLoadPluginC(); }
124124

125125
}

0 commit comments

Comments
 (0)