| 129 | } |
| 130 | |
| 131 | void test_backward_io( const std::string& filename ) |
| 132 | { |
| 133 | auto graph = geode::load_graph( filename ); |
| 134 | |
| 135 | geode::OpenGeodeMeshException::test( |
| 136 | graph->edges_around_vertex( 2 ).size() == 3, |
| 137 | "Backward edges_around should have 3 edges" ); |
| 138 | } |
| 139 | |
| 140 | void test_clone( const geode::Graph& graph ) |
| 141 | { |
no test coverage detected