Skip to content
Snippets Groups Projects
Commit 6ae51790 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

deactivate CheckGaussIntegrationLevel in TestFe

It's hard to test this because, for higher order elements, integrated matrix values can vary depending on the order.
parent 09e5df6b
No related branches found
No related tags found
No related merge requests found
...@@ -228,6 +228,7 @@ TYPED_TEST(NumLibFemIsoTest, CheckMassLaplaceMatrices) ...@@ -228,6 +228,7 @@ TYPED_TEST(NumLibFemIsoTest, CheckMassLaplaceMatrices)
ASSERT_ARRAY_NEAR(this->expectedK.data(), K.data(), K.size(), this->eps); ASSERT_ARRAY_NEAR(this->expectedK.data(), K.data(), K.size(), this->eps);
} }
#if 0
TYPED_TEST(NumLibFemIsoTest, CheckGaussIntegrationLevel) TYPED_TEST(NumLibFemIsoTest, CheckGaussIntegrationLevel)
{ {
// Refer to typedefs in the fixture // Refer to typedefs in the fixture
...@@ -263,5 +264,5 @@ TYPED_TEST(NumLibFemIsoTest, CheckGaussIntegrationLevel) ...@@ -263,5 +264,5 @@ TYPED_TEST(NumLibFemIsoTest, CheckGaussIntegrationLevel)
} }
ASSERT_ARRAY_NEAR(this->expectedM.data(), M.data(), M.size(), this->eps); ASSERT_ARRAY_NEAR(this->expectedM.data(), M.data(), M.size(), this->eps);
} }
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment