added test for new outer lifeline parameter

This commit is contained in:
2026-01-21 14:18:53 +01:00
parent 03c0f1cc7e
commit 3a7e0a8176
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# generated by tytanic, do not edit
diff/**
out/**

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,29 @@
#set page(width: auto, height: auto)
#import "/src/lib.typ": *
#let make-diagram(_seq) = {
diagram({
_par("a")
_par("b")
_par("c")
_seq("a", "b")
_seq("c", "b")
_seq("a", "b", enable-dst: true)
_seq("a", "b")
_seq("c", "b")
_seq("a", "b", enable-dst: true)
_seq("a", "b")
_seq("c", "b")
_seq("a", "b", enable-dst: true)
_seq("a", "b")
_seq("c", "b")
_evt("b", "disable")
_evt("b", "disable")
_evt("b", "disable")
})
}
#make-diagram(_seq)
#pagebreak()
#make-diagram(_seq.with(outer-lifeline-connect: true))