Suppose there are two use cases A and B. Is the below scenario even possible:
A includes B and at the same time B extends A?
Can someone explain this please?
A includes B and at the same time B extends A is not possible.
A includes B means that usecase B is always included during usecase A. B is a mandatory part of A.
B extends A means that usecase A may (or may not) be extended by usecase B. A is the core/main/principal usecase and B is one possible addition of A but it is not mandatory.
Hoping it is clear....