39404142434445
/** * Creates the test suite for the tmp file system. */ public static Test suite() throws Exception { return new ProviderTestSuite(new TemporaryProviderTestCase()); }
38394041424344
/** * Creates the test suite for the ftp file system. */ public static Test suite() throws Exception { return new ProviderTestSuite(new FtpProviderTestCase()); }
47484950515253
/** * Creates the test suite for the ram file system. */ public static Test suite() throws Exception { return new ProviderTestSuite(new RamProviderTestCase()); }
/** * Creates the test suite for nested zip files. */ public static Test suite() throws Exception { return new ProviderTestSuite(new NestedZipTestCase()); }
41424344454647
40414243444546
/** * Creates the test suite for the zip file system. */ public static Test suite() throws Exception { return new ProviderTestSuite(new ZipProviderTestCase()); }
36373839404142
*/ public class ResourceProviderTestCase extends AbstractProviderTestConfig { public static Test suite() throws Exception { return new ProviderTestSuite(new ResourceProviderTestCase()); }
/** * Creates the test suite for the tar file system. */ public static Test suite() throws Exception { return new ProviderTestSuite(new Tbz2ProviderTestCase()); }
/** * Creates the test suite for the tar file system. */ public static Test suite() throws Exception { return new ProviderTestSuite(new TarProviderTestCase()); }