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

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

public class NotPublicTestCase extends TestCase {
	protected void testNotPublic() {
	}
	public void testPublic() {
	}
}