| 39 | } |
| 40 | |
| 41 | void remove(const std::string& filename) { |
| 42 | std::string full_name = m_tmp_dir + filename; |
| 43 | int r = std::remove(full_name.c_str()); |
| 44 | ASSERT_EQ(0, r); |
| 45 | } |
| 46 | |
| 47 | void assert_eq_vertices(MeshPtr mesh1, MeshPtr mesh2) { |
| 48 | ASSERT_EQ(mesh1->get_dim(), mesh2->get_dim()); |
no test coverage detected