summaryrefslogtreecommitdiffstats
path: root/junit4/src/test/java/junit/tests/framework/OneTestCase.java
blob: b4ca56045415730e6837cd83b56de7910755d32f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package junit.tests.framework;

/**
 * Test class used in SuiteTest
 */
import junit.framework.TestCase;

public class OneTestCase extends TestCase {
	public void noTestCase() {
	}
	public void testCase() {
	}
	public void testCase(int arg) {
	}
}