Old style Activity PlantUML - can't show question on Test Diamond on IF/ELSE and NEW can't share target acivities
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
@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 |
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
@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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment