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 NotVoidTestCase extends TestCase {
9       public int testNotVoid() {
10          return 1;
11      }
12  
13      public void testVoid() {
14      }
15  }