KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > editor > AnnotationsUnitTestSuite


1 package org.netbeans.modules.editor;
2
3 import junit.framework.TestSuite;
4 import org.netbeans.junit.NbTestSuite;
5 //import org.netbeans.modules.editor.java.JavaFormatterUnitTest;
6

7
8 /**
9  * Test behavior of smart brackets feature.
10  *
11  * @author Miloslav Metelka
12  */

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