MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / test_acyclicGraph

Function test_acyclicGraph

tests/unit/test_detect_cycle.c:112–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

AcyclicBuildGraphFunction · 0.85
IsAcyclicGraphFunction · 0.85
QueryGraph_FreeFunction · 0.85

Tested by

no test coverage detected