KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junit > tests > NotPublicTestCase


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

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