1: package junit.tests.framework;
3: /**
4: * Test class used in SuiteTest
5: */
6: import junit.framework.TestCase;
8: public class NotPublicTestCase extends TestCase {
9: protected void testNotPublic() {
10: }
11: public void testPublic() {
12: }
13: }