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