| 30 | #include <geode/tests/common.hpp> |
| 31 | |
| 32 | void test_single_vertex_cycle() |
| 33 | { |
| 34 | const geode::detail::VertexCycle< std::array< geode::index_t, 1 > > cycle1{ |
| 35 | { 3 } |
| 36 | }; |
| 37 | const geode::detail::VertexCycle< std::array< geode::index_t, 1 > > cycle2{ |
| 38 | { 4 } |
| 39 | }; |
| 40 | geode::OpenGeodeMeshException::test( cycle1 != cycle2, |
| 41 | "Wrong result for operator!= with cycle1 and cycle2" ); |
| 42 | } |
| 43 | |
| 44 | void test_vertex_cycle() |
| 45 | { |