blob: d28adc39e827c94732de700ee826ec3d3ea7b565 [file] [log] [blame]
package junit.tests;
/**
* Test class used in SuiteTest
*/
import junit.framework.TestCase;
public class NotPublicTestCase extends TestCase {
public NotPublicTestCase(String name) {
super(name);
}
protected void testNotPublic() {
}
public void testPublic() {
}
}