Author: aheritier Date: Thu Jan 20 15:24:51 2005 New Revision: 125856 URL: http://svn.apache.org/viewcvs?view=rev&rev=125856 Log: Rename test class to match the POM Added: maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/AClassTest.java - copied, changed from r125810, maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java Removed: maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java
Copied: maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/AClassTest.java (from r125810, maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java) Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/AClassTest.java?view=diff&rev=125856&p1=maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java&r1=125810&p2=maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/AClassTest.java&r2=125856 ============================================================================== --- maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java (original) +++ maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/AClassTest.java Thu Jan 20 15:24:51 2005 @@ -15,12 +15,44 @@ * ==================================================================== */ +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + /** * A simple class * * @author <a href="mailto:[EMAIL PROTECTED]">Carlos Sanchez</a> - * @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" + ); + } } Deleted: /maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ant/src/plugin-test/src/test/ATestCaseClass.java?view=auto&rev=125855 ============================================================================== --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
