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