You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried to make a test expectedly fail but it is passed by the build.
Precisely, I have changed the line 132 in the test testElasticIsotropic.cpp to make it fail as follow
Initial code
EXPECT_DOUBLE_EQ( stress( 0, 0, 5 ), 0 );
Modified code to make it fail
EXPECT_DOUBLE_EQ( stress( 0, 0, 5 ), 1.0 );
However, I have observed that the build is successful with this change. I have verified that this test is well listed in the corresponding CMakeList.txt
The text was updated successfully, but these errors were encountered:
I have tried to make a test expectedly fail but it is passed by the build.
Precisely, I have changed the line 132 in the test testElasticIsotropic.cpp to make it fail as follow
Initial code
EXPECT_DOUBLE_EQ( stress( 0, 0, 5 ), 0 );
Modified code to make it fail
EXPECT_DOUBLE_EQ( stress( 0, 0, 5 ), 1.0 );
However, I have observed that the build is successful with this change. I have verified that this test is well listed in the corresponding CMakeList.txt
The text was updated successfully, but these errors were encountered: