summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorMichael Williamson <mike@zwobble.org>2026-04-26 17:11:09 +0100
committerMichael Williamson <mike@zwobble.org>2026-04-26 17:11:09 +0100
commit971321393c5965dd14eb604e22e907d6b94b0c8a (patch)
tree31aa42b932474944d7117c81586679b87ea839ca /src/test
parent72c84ea17a7e4b27cf9428ef23f713e32f5339d3 (diff)
Add stubbed Java generator
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java3
1 files changed, 2 insertions, 1 deletions
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());
}
}