summaryrefslogtreecommitdiffstats
path: root/junit4/src/test/java/junit/tests/framework/NotVoidTestCase.java
blob: eca1a6361769f5528444144aa0563a70d93ec40c (plain)
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() {
	}
}