Generate test paths from activity diagram

+1 vote
asked Apr 30, 2014 in Wanted features by Pander (780 points)

Please oiffer a command-line option to output test paths for a activity diagram. The output would be text covering all paths.

An example would be:

@startuml
title Test paths\n(A=t:1/A=f:2),3,4,(B=t:5/B=f:6),C=t:7,C=f,8:D=t,8:D=f\n
start
if (A) then (t)
  :1;
else (f)
  :2;
endif
fork
  :3;
  :4;
fork again
  if (B) then (t)
    :5;
  else (f)
    :6;
 endif
end fork
while (C) is (t)
  :7;
endwhile (f)
repeat
  :8;
repeat while (D) is (t) not (f)
stop
@enduml

With output

(A=t:1/A=f:2),3,4,(B=t:5/B=f:6),C=t:7,C=f,8:D=t,8:D=f

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...