Make build fail on test failure

This commit is contained in:
Flare Microsystems
2024-11-08 19:36:26 -08:00
parent 1ffd4fdbe6
commit 98c00fc1c0
3 changed files with 6 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ public class MainTest {
@Test
public void test() {
assertTrue(true);
assertTrue(false);
}
}