1 19 20 package org.openide.filesystems; 21 import junit.framework.*; 22 import org.netbeans.junit.*; 23 24 public class FileSystemSuite extends NbTestCase { 25 26 public FileSystemSuite(java.lang.String testName) { 27 super(testName); 28 } 29 30 public static void main(java.lang.String [] args) { 31 junit.textui.TestRunner.run(suite()); 32 } 33 34 public static Test suite() { 35 NbTestSuite suite = new NbTestSuite("FileSystemTest"); 36 37 38 47 48 return suite; 49 } 50 51 } 52 | Popular Tags |