| 110 | } |
| 111 | |
| 112 | void test_acyclicGraph() { |
| 113 | QueryGraph *g = AcyclicBuildGraph(); // Graph traversed. |
| 114 | TEST_ASSERT(IsAcyclicGraph(g) == true); |
| 115 | |
| 116 | // clean up |
| 117 | QueryGraph_Free(g); |
| 118 | } |
| 119 | |
| 120 | void test_cyclicGraph() { |
| 121 | QueryGraph *g = CyclicBuildGraph(); // Graph traversed. |
nothing calls this directly
no test coverage detected