KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junit > tests > framework > NotPublicTestCase


1 package junit.tests.framework;
2
3 /**
4  * Test class used in SuiteTest
5  */

6 import junit.framework.TestCase;
7
8 public class NotPublicTestCase extends TestCase {
9     protected void testNotPublic() {
10     }
11     public void testPublic() {
12     }
13 }
Popular Tags