KickJava   Java API By Example, From Geeks To Geeks.

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


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

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