Skip to content
Snippets Groups Projects
Commit c08a961e authored by Sören Henning's avatar Sören Henning
Browse files

test fixes

parent bbf0594b
No related branches found
No related tags found
2 merge requests!17Get impletemented stages and Java 8,!16Trace aggr analysis graph migration
Pipeline #
......@@ -56,7 +56,20 @@ public class GraphTester {
Vertex node1sub1 = node1.getChildGraph().addVertex("n1::s1");
Vertex node1sub2 = node1.getChildGraph().addVertex("n1::s2");
Vertex node1sub3 = node1.getChildGraph().addVertex("n1::s3");
node1sub3.addEdge("wormhole", node4);
node1sub3.addEdge("wormhole1", node4);
node4.addEdge("wormhole2", node1sub3);
node1sub3.addChildGraph();
Vertex node1sub3sub1 = node1sub3.getChildGraph().addVertex("n1::s3::s1");
Vertex node1sub3sub2 = node1sub3.getChildGraph().addVertex("n1::s3::s2");
Vertex node1sub3sub3 = node1sub3.getChildGraph().addVertex("n1::s3::s3");
node1sub3sub1.addEdge("wormhole3", node4);
node4.addEdge("wormhole4", node1sub3sub1);
node1sub3sub2.addEdge(node1sub3sub3);
node1sub2.addChildGraph();
Vertex node1sub2sub1 = node1sub2.getChildGraph().addVertex("n1::s2::s1");
node1sub2sub1.addEdge("hyperwormhole", node1sub3sub1);
if (node1.hasChildGraph()) {
System.out.println("Node 1 has Child graph");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment