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