diff --git a/ant/src/plugin-test/src/test/ATestCaseClass.java b/ant/src/plugin-test/src/test/AClassTest.java similarity index 59% rename from ant/src/plugin-test/src/test/ATestCaseClass.java rename to ant/src/plugin-test/src/test/AClassTest.java index 37ef2daa..d699670a 100644 --- a/ant/src/plugin-test/src/test/ATestCaseClass.java +++ b/ant/src/plugin-test/src/test/AClassTest.java @@ -15,12 +15,44 @@ * ==================================================================== */ +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + /** * A simple class * * @author Carlos Sanchez - * @version $Id: ATestCaseClass.java,v 1.1 2004/08/16 10:50:26 carlos Exp $ + * @version $Id$ */ -public class ATestCaseClass { +public class AClassTest extends TestCase { + + /** + * List tests classes + * + * @return the suite of tests being tested + */ + public static Test suite() { + return new TestSuite(AClassTest.class); + } + + /** + * Create the test case + * + * @param testName name of the test case + */ + public AClassTest(final String testName) { + super(testName); + } + + /** + * Test to do. + */ + public void testNothing() { + assertEquals( + "test", + "test" + ); + } }