Rename test class to match the POM

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@125856 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier
2005-01-20 23:24:51 +00:00
parent 137328661e
commit fc62b20ee0

View File

@@ -15,12 +15,44 @@
* ====================================================================
*/
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* A simple class
*
* @author <a href="mailto:carlos@apache.org">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"
);
}
}