Skip to content

Instantly share code, notes, and snippets.

@kstrauss
Created June 28, 2018 20:26
Show Gist options
  • Save kstrauss/33ee01eeebf2cee2851126eff294e64e to your computer and use it in GitHub Desktop.
Save kstrauss/33ee01eeebf2cee2851126eff294e64e to your computer and use it in GitHub Desktop.
Test Process
digraph G {
graph [fontsize=10 fontname="Verdana" compound=true];
node [shape=record fontsize=10 fontname="Verdana"];
subgraph cluster_Development {
style=filled;
color=lightgrey;
label = "Development";
ReadSpecs -> PhysicalSentIntegration;
ReadSpecs -> PhysicalReceivedIntegration;
ReadSpecs -> writeDecoder;
writeDecoder -> Test -> writeDecoder -> backTest -> writeDecoder -> developed;
PhysicalSentIntegration -> developed;
PhysicalReceivedIntegration -> developed;
backTest [label="Validate"];
developed [shape=Msquare];
}
subgraph cluster_DougValidation{
node [style=filled];
label = "Post Development Validation";
color=blue
FirstEvents -> MaterializedView
MaterializedView -> UseAsProduction;
UseAsProduction -> AskQuestions -> ProvideSupportDocumentation;
ProvideSupportDocumentation -> MakeChoice -> Accept;
MakeChoice -> ReviseDecode;
Accept -> ReviseProcess;
UseAsProduction -> ReviseProcess;
ReviseProcess -> UseAsProduction;
ReviseProcess [label="Revise Process or Materialized View"];
ProvideSupportDocumentation [label="Provide Support Documentation"];
}
start -> ReadSpecs;
developed -> FirstEvents [ltail=cluster_DougValidation];
ReviseDecode -> writeDecoder [ltail=cluster_development,lhead=cluster_DougValidation];
start [shape=Mdiamond];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment