Created
June 28, 2018 20:26
-
-
Save kstrauss/33ee01eeebf2cee2851126eff294e64e to your computer and use it in GitHub Desktop.
Test Process
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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