1 19 20 package org.netbeans.test.java.parsing.javadoc; 21 22 import junit.textui.TestRunner; 23 import org.netbeans.junit.NbTestCase; 24 import org.netbeans.junit.NbTestSuite; 25 import org.netbeans.test.java.LogTestCase; 26 import org.openide.filesystems.FileObject; 27 import org.openide.filesystems.FileUtil; 28 29 30 32 33 public class JavaDoc extends LogTestCase { 34 35 37 public JavaDoc(String name) { 38 super(name); 39 } 40 41 public static NbTestSuite suite() { 42 NbTestSuite suite = new NbTestSuite(); 43 suite.addTest(new JavaDoc("testClass")); 44 suite.addTest(new JavaDoc("testMethod")); 45 suite.addTest(new JavaDoc("testField")); 46 suite.addTest(new JavaDoc("testConstructor")); 47 return suite; 48 } 49 50 51 public static void main(java.lang.String [] args) { 52 TestRunner.run(suite()); 53 } 54 55 public void setUp() { 56 super.setUp(); 57 FileObject artefact=FileUtil.toFileObject(classPathWorkDir); 58 } 60 61 public void testClass() { 62 } 64 65 public void testMethod() { 66 } 68 69 public void testField() { 70 } 72 73 public void testConstructor() { 74 } 76 } 77 | Popular Tags |