Skip to content

Commit

Permalink
Update Structurize-Export to 1.17.0 And Fix Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
qtzar authored and jp7677 committed Oct 27, 2023
1 parent 2aa3ec0 commit ce0cc99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {

implementation("com.structurizr:structurizr-core:1.27.0")
implementation("com.structurizr:structurizr-dsl:1.32.0")
implementation("com.structurizr:structurizr-export:1.16.1")
implementation("com.structurizr:structurizr-export:1.17.0")

implementation("net.sourceforge.plantuml:plantuml:1.2023.12")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class C4PlantUmlExporterWithElementLinksTest {
System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-1/container/")
System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-2/context/")
Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
""".trimIndent()
)
}
Expand Down Expand Up @@ -118,7 +118,7 @@ class C4PlantUmlExporterWithElementLinksTest {
Component(System1.Container1.Component1, "Component 1", ${'$'}techn="", ${'$'}descr="", ${'$'}tags="", ${'$'}link="")
}
Rel_D(System1.Container1.Component1, System1.Container2, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
Rel(System1.Container1.Component1, System1.Container2, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
""".trimIndent()
)
}
Expand All @@ -135,7 +135,7 @@ class C4PlantUmlExporterWithElementLinksTest {
System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="")
System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-2/context/")
Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
""".trimIndent()
)
}
Expand All @@ -152,7 +152,7 @@ class C4PlantUmlExporterWithElementLinksTest {
System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="")
System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../../system-2/context/")
Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="")
""".trimIndent()
)
}
Expand Down

0 comments on commit ce0cc99

Please sign in to comment.