1 19 20 package org.netbeans.modules.junit; 21 22 import java.util.*; 23 import java.awt.*; 24 import java.awt.event.*; 25 import org.openide.*; 26 import org.openide.TopManager; 27 import org.openide.filesystems.*; 28 import org.openide.explorer.propertysheet.*; 29 import org.openide.util.NbBundle; 30 import junit.framework.*; 31 32 public class JUnitCfgOfCreateTest extends TestCase { 33 34 public JUnitCfgOfCreateTest(java.lang.String testName) { 35 super(testName); 36 } 37 38 public static void main(java.lang.String [] args) { 39 junit.textui.TestRunner.run(suite()); 40 } 41 42 public static Test suite() { 43 TestSuite suite = new TestSuite(JUnitCfgOfCreateTest.class); 44 45 return suite; 46 } 47 48 49 public void testConfigure() { 50 System.out.println("testConfigure"); 51 fail("GUI dependent test."); 52 } 53 54 55 public void testSetNewFileSystem() { 56 System.out.println("testSetNewFileSystem"); 57 } 59 60 61 public void testGetNewFileSystem() { 62 System.out.println("testGetNewFileSystem"); 63 } 65 66 } 67 | Popular Tags |