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