import junit.framework.TestCase; public class TestA extends TestCase { public TestA(String name) { super(name); } public void testA() { System.out.println("testA"); } }