You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently realization is represented when yuml code is generated for a implementing class. However when a implemented interface is specified its implementing classes are not shown.
Scenario 1 - Single implementing class
Given
Class CL_IMP1 implements interface IF_A
When
yUML code is generated for interface IF_A
Then
Realization should be represented as
[IF_A]^-.-[CL_IMP1]
Scenario 2 - Multiple implementing classes
Given
Class CL_IMP1 implements interface IF_A AND
Class CL_IMP2 implements interface IF_A AND
Class CL_IMP3 implements interface IF_A
When
yUML code is generated for interface IF_A
Then
Realization should be represented as
[IF_A]^-.-[CL_IMP1]
[IF_A]^-.-[CL_IMP2]
[IF_A]^-.-[CL_IMP3]
The text was updated successfully, but these errors were encountered:
Currently realization is represented when yuml code is generated for a implementing class. However when a implemented interface is specified its implementing classes are not shown.
Scenario 1 - Single implementing class
Given
Class CL_IMP1 implements interface IF_A
When
yUML code is generated for interface IF_A
Then
Realization should be represented as
[IF_A]^-.-[CL_IMP1]
Scenario 2 - Multiple implementing classes
Given
Class CL_IMP1 implements interface IF_A AND
Class CL_IMP2 implements interface IF_A AND
Class CL_IMP3 implements interface IF_A
When
yUML code is generated for interface IF_A
Then
Realization should be represented as
[IF_A]^-.-[CL_IMP1]
[IF_A]^-.-[CL_IMP2]
[IF_A]^-.-[CL_IMP3]
The text was updated successfully, but these errors were encountered: