1 package junit.tests.framework; 2 3 /*** 4 * Test class used in SuiteTest 5 */ 6 import junit.framework.TestCase; 7 8 public class OneTestCase extends TestCase { 9 public void noTestCase() { 10 } 11 public void testCase() { 12 } 13 public void testCase(int arg) { 14 } 15 }