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 NonTestReturnSuite10 extends TestCase {11 12 public NonTestReturnSuite(String name) {13 super(name);14 }15 16 public static boolean suite() {17 return true;18 }19 }20