summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Williamson <mike@zwobble.org>2026-07-14 18:38:58 +0100
committerMichael Williamson <mike@zwobble.org>2026-07-14 18:38:58 +0100
commit717cef4b3c757ceefb2a16cdf6c3892cde28b53f (patch)
treef66cba123007fc3b174b912c2c4e0fc2037f7fda /src
parent099868f3c3dbb40fd29cdd62d91ea8959af4c5b3 (diff)
Remove support for java output in examples
Diffstat (limited to 'src')
-rw-r--r--src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java5
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"));