| 149 | } |
| 150 | |
| 151 | void test_delete_isolated_vertices( |
| 152 | const geode::Graph& graph, geode::GraphBuilder& builder ) |
| 153 | { |
| 154 | builder.delete_isolated_vertices(); |
| 155 | geode::OpenGeodeMeshException::test( |
| 156 | graph.nb_vertices() == 3, "Graph should have 3 vertices" ); |
| 157 | geode::OpenGeodeMeshException::test( |
| 158 | graph.nb_edges() == 2, "Graph should have 2 edges" ); |
| 159 | } |
| 160 | |
| 161 | void test() |
| 162 | { |
no test coverage detected