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