transition enricher

This commit is contained in:
2026-06-19 07:44:54 +02:00
parent 8d4ba0697e
commit e894566112
36 changed files with 230 additions and 289 deletions

View File

@@ -81,6 +81,14 @@ public class HtmlExporterTest {
// 7. Assertions - Surgical SVG Identification
// Every event should be wrapped in an identifying hyperlink for robust JS selection
java.nio.file.Files.writeString(java.nio.file.Paths.get("debug_html.html"), html);
click.kamil.springstatemachineexporter.exporter.ExportOptions plantUmlOptions = click.kamil.springstatemachineexporter.exporter.ExportOptions.builder()
.embedIdentifiers(true)
.build();
click.kamil.springstatemachineexporter.exporter.PlantUml pumlExporter = new click.kamil.springstatemachineexporter.exporter.PlantUml();
java.nio.file.Files.writeString(java.nio.file.Paths.get("debug_puml.puml"), pumlExporter.export(result, plantUmlOptions));
assertThat(html).contains("__CREATE");
assertThat(html).contains("__ASSIGN");
assertThat(html).contains("__CLOSE_TICKET");