Package org.apache.commons.vfs.test

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


    /**
     * 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


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

public class SftpProviderTestCase
    extends AbstractProviderTestConfig
{
    public static Test suite() throws Exception
    {
        return new ProviderTestSuite(new SftpProviderTestCase());
    }
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.