junit4 is the "old" release
https://github.com/junit-team/junit4/wiki/Download-and-Install

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2023-10-03 16:14:42 -04:00
parent cc6cd29661
commit fadee31f21
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
4 changed files with 44 additions and 3 deletions

View file

@ -0,0 +1,18 @@
package hbb;
import org.junit.Test;
import static org.junit.Assert.fail;
public class HelloWorldTest {
@Test
public void testNothing() {
}
@Test
public void testWillAlwaysFail() {
fail("An error message");
}
}