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,20 @@
1
+digraph g {
2
+node [shape = record,height=.1];
3
+node0[label = "<f0> |<f1> G|<f2> "];
4
+node1[label = "<f0> |<f1> E|<f2> "];
5
+node2[label = "<f0> |<f1> B|<f2> "];
6
+node3[label = "<f0> |<f1> F|<f2> "];
7
+node4[label = "<f0> |<f1> R|<f2> "];
8
+node5[label = "<f0> |<f1> H|<f2> "];
9
+node6[label = "<f0> |<f1> Y|<f2> "];
10
+node7[label = "<f0> |<f1> A|<f2> "];
11
+node8[label = "<f0> |<f1> C|<f2> "];
12
+"node0":f2 -> "node4":f1;
13
+"node0":f0 -> "node1":f1;
14
+"node1":f0 -> "node2":f1;
15
+"node1":f2 -> "node3":f1;
16
+"node2":f2 -> "node8":f1;
17
+"node2":f0 -> "node7":f1;
18
+"node4":f2 -> "node6":f1;
19
+"node4":f0 -> "node5":f1;
20
+}