KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junitx > tool > NonTestReturnSuite


1 package junitx.tool;
2
3 import junit.framework.TestCase;
4
5 /**
6  * @version $Revision: 1.2 $ $Date: 2003/01/14 08:58:44 $
7  * @author <a HREF="mailto:vbossica@users.sourceforge.net">Vladimir Bossicard</a>
8  */

9 public class NonTestReturnSuite
10         extends TestCase {
11
12     public NonTestReturnSuite(String JavaDoc name) {
13         super(name);
14     }
15
16     public static boolean suite() {
17         return true;
18     }
19 }
20
Popular Tags