| 82 | |
| 83 | /** \brief Check if the size of the mesh data is correct. */ |
| 84 | template <class MeshT> void |
| 85 | checkSizeData (const MeshT& mesh, const std::size_t n_v, const std::size_t n_he, const std::size_t n_e, const std::size_t n_f) |
| 86 | { |
| 87 | ASSERT_EQ (n_v , mesh.getVertexDataCloud ().size ()); |
| 88 | ASSERT_EQ (n_he, mesh.getHalfEdgeDataCloud ().size ()); |
| 89 | ASSERT_EQ (n_e , mesh.getEdgeDataCloud ().size ()); |
| 90 | ASSERT_EQ (n_f , mesh.getFaceDataCloud ().size ()); |
| 91 | } |
| 92 | |
| 93 | //////////////////////////////////////////////////////////////////////////////// |
| 94 |
no test coverage detected