Browse code

tests: Import Graphviz tests.

Jose Fonseca authored on 13/02/2016 23:53:31
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,18 @@
1
+digraph weight_tree{
2
+node [shape=box color=lightblue,style=filled];
3
+ 
4
+all [label="All items",xlabel="100"];
5
+t1 [label="Part 1",xlabel="75"];
6
+t2 [label="Part 2",xlabel="25"];
7
+p1 [label="pPart 1",xlabel="50"];
8
+p2 [label="pPart 2",xlabel="50"];
9
+p3 [label="pPart 3",xlabel="50"];
10
+p4 [label="pPart 4",xlabel="50"];
11
+all -> t1 [label="75%"];
12
+all -> t2;
13
+t1 -> p1 [label="20%"];
14
+t1 -> p2;
15
+t2 -> p3;
16
+t2 -> p4;
17
+}
18
+