--- /dev/null
+public class FailTest extends junit.framework.TestCase {
+
+ public void testNothing() {
+ }
+
+ public void testWillAlwaysFail() {
+ fail("An error message");
+ }
+
+}
\ No newline at end of file
--- /dev/null
+package ant;
+
+public class HelloWorldTest extends junit.framework.TestCase {
+
+ public void testClone() {
+ HelloWorld hello = new HelloWorld();
+ assertEquals(hello, hello.clone());
+ }
+
+ public void testWillAlwaysFail() {
+ fail("An error message");
+ }
+
+}
\ No newline at end of file