1 package junit.tests;2 3 /**4 * Test class used in SuiteTest5 */6 import junit.framework.TestCase;7 8 public class NotVoidTestCase extends TestCase {9 public NotVoidTestCase(String name) {10 super(name);11 }12 public int testNotVoid() {13 return 1;14 }15 public void testVoid() {16 }17 }