1 package junit.tests.framework; 2 3 import junit.framework.*; 4 5 /*** 6 * A test case testing the testing framework. 7 * 8 */ 9 public class Success extends TestCase { 10 11 public void runTest() { 12 } 13 14 public void testSuccess() { 15 } 16 }