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