Use case diagram does not properly handle case alias

0 votes
asked Dec 18, 2017 in Closed bug by MH35 (120 points)
recategorized Dec 19, 2017 by MH35
I wrote a use case diagram as below, I expected (bcd) use case was included in rectangle x, but was not.
I think it is a bug.

@startuml
actor :ABC: as A
(bcd) as (b)
rectangle x {
  A --> (b)
}
@enduml

1 Answer

0 votes
answered Dec 18, 2017 by Serge Wenger Work (15,620 points)

You should declare in the rectangle:

@startuml
rectangle x {
actor :ABC: as A
(bcd) as (b)
  A --> (b)
}
@enduml

commented Dec 19, 2017 by MH35 (120 points)
Thank you very much
...