| 44 | #include "MeshTest.inl" |
| 45 | |
| 46 | TEST_F(MeshTest, Dim) { |
| 47 | ASSERT_EQ(3, m_cube_tri->get_dim()); |
| 48 | ASSERT_EQ(3, m_cube_tet->get_dim()); |
| 49 | ASSERT_EQ(2, m_square_tri->get_dim()); |
| 50 | ASSERT_EQ(3, m_cube_hex->get_dim()); |
| 51 | } |
| 52 | |
| 53 | TEST_F(MeshTest, NumVertices) { |
| 54 | ASSERT_EQ(8, m_cube_tri->get_num_vertices()); |
nothing calls this directly
no test coverage detected