1 package junitx.tool;2 3 import junit.framework.Test;4 import junit.framework.TestCase;5 6 /**7 * @version $Revision: 1.3 $ $Date: 2003/03/21 06:13:47 $8 * @author <a HREF="mailto:vbossica@users.sourceforge.net">Vladimir Bossicard</a>9 */10 public class NonEmptyArgSuite11 extends TestCase {12 13 public NonEmptyArgSuite(String name) {14 super(name);15 }16 17 public static Test suite(boolean val) {18 if (val) {19 ;20 }21 return null;22 }23 }24 25