KickJava   Java API By Example, From Geeks To Geeks.

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


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 FormatterUnitTestSuite extends NbTestSuite {
14       
15     public FormatterUnitTestSuite() {
16         super("Formatter");
17         
18   // addTestSuite(JavaFormatterUnitTest.class);
19
}
20     
21
22     public static NbTestSuite suite() {
23         return new FormatterUnitTestSuite();
24     }
25     
26 }
27
Popular Tags