From 971321393c5965dd14eb604e22e907d6b94b0c8a Mon Sep 17 00:00:00 2001 From: Michael Williamson Date: Sun, 26 Apr 2026 17:11:09 +0100 Subject: Add stubbed Java generator --- src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/test') diff --git a/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java b/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java index 354cb08..e892cd9 100644 --- a/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java +++ b/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java @@ -4,6 +4,7 @@ import org.junit.jupiter.api.DynamicTest; import org.junit.jupiter.api.TestFactory; import java.io.IOException; +import java.util.List; import java.util.stream.Stream; public class ExampleTests { @@ -17,6 +18,6 @@ public class ExampleTests { } private void runTest(ExampleSet exampleSet) throws IOException { - HobgoblinCompiler.compile(exampleSet.path()); + HobgoblinCompiler.compile(exampleSet.path(), List.of()); } } -- cgit v1.2.3