| 82 | } |
| 83 | |
| 84 | void test_clone( const geode::VertexSet& vertex_set ) |
| 85 | { |
| 86 | const auto vertex_set_clone = vertex_set.clone(); |
| 87 | geode::OpenGeodeMeshException::test( vertex_set_clone->nb_vertices() == 5, |
| 88 | "VertexSet2 should have 5 vertices" ); |
| 89 | } |
| 90 | |
| 91 | void test_move( geode::OpenGeodeVertexSet& vertex_set ) |
| 92 | { |
no test coverage detected