1 package org.netbeans.modules.editor; 2 3 import junit.framework.TestSuite; 4 import org.netbeans.junit.NbTestSuite; 5 7 8 13 public class AnnotationsUnitTestSuite extends NbTestSuite { 14 15 public AnnotationsUnitTestSuite() { 16 super("Annotations Unit Tests"); 17 18 addTestSuite(AnnotationsTest.class); 19 } 20 21 22 public static NbTestSuite suite() { 23 return new AnnotationsUnitTestSuite(); 24 } 25 26 } 27 | Popular Tags |