MCPcopy Create free account
hub / github.com/BirolLab/abyss / HashGraphTest

Method HashGraphTest

Unittest/Graph/HashGraphTest.cpp:29–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27 unordered_set<string> vertexSet;
28
29 HashGraphTest() : a("a"), b("b"), c("c"), d("d") {
30
31 add_edge(a, b, simpleCyclicGraph);
32 add_edge(a, c, simpleCyclicGraph);
33 add_edge(b, d, simpleCyclicGraph);
34 add_edge(c, d, simpleCyclicGraph);
35
36 vertexSet.insert(a);
37 vertexSet.insert(b);
38 vertexSet.insert(c);
39 vertexSet.insert(d);
40
41 }
42};
43
44TEST_F(HashGraphTest, out_edge_iterator)

Callers

nothing calls this directly

Calls 2

add_edgeFunction · 0.50
insertMethod · 0.45

Tested by

no test coverage detected