Package org.apache.commons.vfs2.test

Examples of org.apache.commons.vfs2.test.ProviderTestSuite


public class VirtualProviderTestCase
    extends AbstractProviderTestConfig
{
    public static Test suite() throws Exception
    {
        final ProviderTestSuite testSuite = new ProviderTestSuite(new VirtualProviderTestCase());
        testSuite.addTests(JunctionTests.class);
        return testSuite;
    }
View Full Code Here


    /**
     * Creates the test suite for the tar file system.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new TarProviderTestCase(), true);
    }
View Full Code Here

    /**
     * Creates the test suite for nested zip files.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new NestedZipTestCase(), true);
    }
View Full Code Here

    /**
     * Creates the test suite for the zip file system.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new ZipProviderTestCase(), true);
    }
View Full Code Here

    /**
     * Creates the test suite for nested tar files.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new NestedTgzTestCase(), true);
    }
View Full Code Here

    /**
     * Creates the test suite for nested tar files.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new NestedTbz2TestCase(), true);
    }
View Full Code Here

    /**
     * Creates the test suite for the tar file system.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new TgzProviderTestCase(), true);
    }
View Full Code Here

    /**
     * Creates the test suite for nested tar files.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new NestedTarTestCase(), true);
    }
View Full Code Here

    private static final String TEST_URI = "test.sftp.uri";
    public static Test suite() throws Exception
    {
        if (System.getProperty(TEST_URI) != null)
        {
            return new ProviderTestSuite(new SftpProviderTestCase());
        }
        else
        {
            return notConfigured(SftpProviderTestCase.class);
        }
View Full Code Here

    /**
     * Creates the test suite for the tmp file system.
     */
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new TemporaryProviderTestCase());
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.vfs2.test.ProviderTestSuite

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.