KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junit > tests > NotVoidTestCase


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

6 import junit.framework.TestCase;
7
8 public class NotVoidTestCase extends TestCase {
9     public NotVoidTestCase(String JavaDoc name) {
10         super(name);
11     }
12     public int testNotVoid() {
13         return 1;
14     }
15     public void testVoid() {
16     }
17 }
Popular Tags