/** * */ package test; import junit.framework.TestCase; /** * @author Administrator * */ public class OneTest extends TestCase { /** * @param name */ public OneTest(String name) { super(name); } /* (non-Javadoc) * @see junit.framework.TestCase#setUp() */ protected void setUp() throws Exception { super.setUp(); } /* (non-Javadoc) * @see junit.framework.TestCase#tearDown() */ protected void tearDown() throws Exception { super.tearDown(); } public void testOne() { System.out.println("test one"); } } /** * */ package test; import junit.fra