1 19 20 package org.openide.filesystems; 21 22 import junit.framework.*; 23 import org.netbeans.junit.*; 24 import org.openide.*; 26 27 28 import java.io.*; 29 30 35 public class SystemFileSystemTest extends FileSystemFactoryHid { 36 37 38 public SystemFileSystemTest(Test test) { 39 super(test); 40 } 41 42 public static void main(String args[]) throws Exception { 43 junit.textui.TestRunner.run(suite()); 44 } 45 46 public static Test suite() { 47 NbTestSuite suite = new NbTestSuite(); 48 suite.addTestSuite(MfoOnSFSTestHid.class); 49 50 51 55 56 return new SystemFileSystemTest (suite); 57 } 58 59 60 64 protected FileSystem[] createFileSystem (String testName, String [] resources) throws IOException { 65 return new FileSystem[] {}; 66 } 67 68 protected void destroyFileSystem (String testName) throws IOException {} 69 } 70 | Popular Tags |