diff --git a/build.xml b/build.xml index ee3ab90..46cfdad 100644 --- a/build.xml +++ b/build.xml @@ -1,20 +1,26 @@ - + + + + + + + - + @@ -27,7 +33,24 @@ - + + + + + + + + + + + + + + + + + + diff --git a/lib/.gitkeep b/lib/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/lib/junit-4.13.2.jar b/lib/junit-4.13.2.jar new file mode 100644 index 0000000..6da55d8 Binary files /dev/null and b/lib/junit-4.13.2.jar differ diff --git a/src/hbb/HelloWorldTest.java b/src/hbb/HelloWorldTest.java new file mode 100644 index 0000000..2eb6f1e --- /dev/null +++ b/src/hbb/HelloWorldTest.java @@ -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"); + } + +}