Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save systemsincode/591f86597efff9fd9cf279ab486ece0b to your computer and use it in GitHub Desktop.
Save systemsincode/591f86597efff9fd9cf279ab486ece0b to your computer and use it in GitHub Desktop.
Old style Activity PlantUML - can't show question on Test Diamond on IF/ELSE and NEW can't share target acivities
@startuml
header Minimum Reproducible Example
title Can't point two queries to same activity
start
!$shared = SHARED
!$nonShared = NON-SHARED
:Minimum Reproducible Example;
if (Test Question) then (yes)
:$shared;
else (no)
if (Second Test Question) then (yes)
:$shared;
else
:$nonShared;
stop
@enduml
@startuml
header Minimum Reproducible Example
title "Can't put test query text in condition diamond"
!$shared = "SHARED"
!$nonShared = "NON-SHARED"
(*) -down-> "Minimum Reproducible Example:"
if "TEST QUESTION" then
-DOWN-> [yes] $shared
else
-RIGHT-> [no] if "SECOND TEST QUESTION" then
-DOWN-> [yes] $shared
else
-RIGHT-> [no] if "THIRD TEST QUERY" then
-DOWN-> [yes] $nonShared
-> (*)
@enduml
@systemsincode
Copy link
Author

Old style activity - Choice to Same - can not put Test text on diamond MRE-Can_t_put_test_query_text_in_condition_diamond

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment