Package org.apache.commons.vfs.test

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


    extends AbstractProviderTestConfig
    implements ProviderTestConfig
{
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new SmbProviderTestCase());
    }
View Full Code Here


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 local file system.
     */
    public static Test suite() throws Exception
    {
        final ProviderTestSuite testSuite = new ProviderTestSuite(new LocalProviderTestCase());
        testSuite.addTests(FileNameTests.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 Tbz2ProviderTestCase());
    }
View Full Code Here

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

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

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

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

public class WebdavProviderTestCase
    extends AbstractProviderTestConfig
{
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new WebdavProviderTestCase());
    }
View Full Code Here

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

TOP

Related Classes of org.apache.commons.vfs.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.