diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-07-14 18:38:58 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-07-14 18:38:58 +0100 |
| commit | 717cef4b3c757ceefb2a16cdf6c3892cde28b53f (patch) | |
| tree | f66cba123007fc3b174b912c2c4e0fc2037f7fda | |
| parent | 099868f3c3dbb40fd29cdd62d91ea8959af4c5b3 (diff) | |
Remove support for java output in examples
| -rw-r--r-- | src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java b/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java index 46b35e4..ab124a1 100644 --- a/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java +++ b/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java @@ -26,15 +26,10 @@ public class ExampleTests { private void runTest(ExampleSet exampleSet) throws IOException, InterruptedException, NoSuchAlgorithmException { HobgoblinCompiler.compile(exampleSet.path()); - verifyJavaOutput(exampleSet); verifyJavaJunitOutput(exampleSet); verifyRustOutput(exampleSet); } - private void verifyJavaOutput(ExampleSet exampleSet) throws NoSuchAlgorithmException, IOException, InterruptedException { - verifyOutput(exampleSet, "java", List.of("mvn", "compile", "exec:java")); - } - private void verifyJavaJunitOutput(ExampleSet exampleSet) throws NoSuchAlgorithmException, IOException, InterruptedException { // TODO: allow example to declare its structure verifyOutput(exampleSet, "java-junit", List.of("mvn", "test")); |
