| 12 | class MeshFactoryTest : public TestBase { |
| 13 | protected: |
| 14 | MeshPtr copy_mesh_data(const MeshPtr mesh) { |
| 15 | return load_data(mesh->get_vertices(), mesh->get_faces(), mesh->get_voxels(), |
| 16 | mesh->get_dim(), |
| 17 | mesh->get_vertex_per_face(), |
| 18 | mesh->get_vertex_per_voxel()); |
| 19 | } |
| 20 | |
| 21 | void ASSERT_MESH_EQ(const MeshPtr mesh1, const MeshPtr mesh2) const { |
| 22 | ASSERT_EQ(mesh1->get_dim(), mesh2->get_dim()); |
nothing calls this directly
no test coverage detected