I use Sequence Diagrams to show how flows of Use Case are implemented.
I would like lean on the Sequence diagram to map the possible scenarios to an Excel sheet.
I mean: according to the conditions in the sequence diagram flow I will have an ordered list of possible scenarios and output. Such as:
if condition 1
, 2
and 4
are met -> then the output is A
if only 2
and 4
are met -> then the output is B
if only condition 1
is met -> then the output is C
and so on...
Is there a built-in feature that performs this or something similar?
Thoughts?