KickJava   Java API By Example, From Geeks To Geeks.

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


1 package junit.tests.framework;
2
3 import junit.framework.*;
4
5 /**
6  * A test case testing the testing framework.
7  *
8  */

9 public class Success extends TestCase {
10     
11     public void runTest() {
12     }
13     
14     public void testSuccess() {
15     }
16 }
Popular Tags