-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock_graph
38 lines (38 loc) · 943 Bytes
/
block_graph
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
digraph G {
rankdir=LR;
fontname="sans-serif";
penwidth="0.1";
edge [comment="Wildcard edge",
fontname="sans-serif",
fontsize=10,
colorscheme="blues3",
color=2,
fontcolor=3];
node [fontname="serif",
fontsize=13,
fillcolor="1",
colorscheme="spectral9",
color="9",
fontcolor="10",
style="filled"];
"Start" [style="dashed"];
"Given" [fillcolor="8"];
"When" [fillcolor="6"];
"Then" [fillcolor="3"];
"Cleanup" [fillcolor="1"];
"Where" [fillcolor="9"];
"End" [style="dashed"];
"Start" -> "Given";
"Start" -> "When";
"Start" -> "Then";
"Given" -> "When";
"Given" -> "Then";
"When" -> "Then";
"Then" -> "Then";
"Then" -> "Cleanup";
"Then" -> "Where";
"Then" -> "End";
"Cleanup" -> "Where";
"Cleanup" -> "End";
"Where" -> "End";
}