From 717cef4b3c757ceefb2a16cdf6c3892cde28b53f Mon Sep 17 00:00:00 2001 From: Michael Williamson Date: Tue, 14 Jul 2026 18:38:58 +0100 Subject: Remove support for java output in examples --- src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/test/java') 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")); -- cgit v1.2.3