1 19 20 package java_smart_enter; 21 22 import junit.framework.TestResult; 23 import org.netbeans.junit.NbTestSuite; 24 25 30 public class SmartEnterTestSuite extends NbTestSuite { 31 32 public SmartEnterTestSuite() { 33 super("Smart Enter"); 34 35 addTestSuite(SmartEnterTest.class); 36 } 37 38 public static NbTestSuite suite() { 39 return new SmartEnterTestSuite(); 40 } 41 42 } | Popular Tags |