Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ On `Requirement` or `Concern` (either definition or usage) graphical nodes it is
Stakeholders are by default represented with a dedicated graphical node connected to the parent graphical node, or can appear inside the `stakeholders` list compartment.
- [releng] Fix the license and URL of our maven modules in the SBOM
- https://github.com/eclipse-syson/syson/issues/2108[#2108] [diagrams] Leverage the latest change of the selection dialog to allow creating an `Actor` graphical node without specialization.
- https://github.com/eclipse-syson/syson/issues/2111[#2111] [diagrams] Leverage the latest change of the selection dialog to allow creating a `Stakeholder` graphical node without specialization.

=== New features

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ private void createActorWithSubsettingInCaseUsage(EClass caseUsageSubclass, Stri
assertThat(referencedObject).isInstanceOf(List.class)
.asInstanceOf(type(List.class))
.satisfies(actors -> {
assertThat(actors).size().isEqualTo(1);
assertThat((List<?>) actors).size().isEqualTo(1);
assertThat(actors.getFirst())
.isInstanceOf(PartUsage.class)
.asInstanceOf(type(PartUsage.class))
Expand Down Expand Up @@ -763,7 +763,7 @@ private void createActorWithFeatureTypingInCaseUsage(EClass caseUsageSubclass, S
assertThat(referencedObject).isInstanceOf(List.class)
.asInstanceOf(type(List.class))
.satisfies(actors -> {
assertThat(actors).size().isEqualTo(1);
assertThat((List<?>) actors).size().isEqualTo(1);
assertThat(actors.getFirst())
.isInstanceOf(PartUsage.class)
.asInstanceOf(type(PartUsage.class))
Expand Down Expand Up @@ -815,7 +815,7 @@ private void createActorWithoutSpecializationInCaseUsage(EClass caseUsageSubclas
assertThat(referencedObject).isInstanceOf(List.class)
.asInstanceOf(type(List.class))
.satisfies(actors -> {
assertThat(actors).size().isEqualTo(1);
assertThat((List<?>) actors).size().isEqualTo(1);
assertThat(actors.getFirst())
.isInstanceOf(PartUsage.class)
.asInstanceOf(type(PartUsage.class))
Expand Down
Loading
Loading