Package org.apache.commons.vfs2.test

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


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


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

    public static Test suite() throws Exception
    {
        if (System.getProperty(TEST_URI) != null)
        {
            return new ProviderTestSuite(new UrlProviderTestCase());
        }
        else
        {
            return notConfigured(UrlProviderTestCase.class);
        }
View Full Code Here

    private static final String TEST_URI = "test.webdav.uri";
    public static Test suite() throws Exception
    {
        if (System.getProperty(TEST_URI) != null)
        {
            ProviderTestSuite suite = new WebdavProviderTestSuite(new WebdavProviderTestCase());
            suite.addTests(WebdavVersioningTests.class);
            return suite;
        }
        else
        {
            return notConfigured(WebdavProviderTestCase.class);
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

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

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

    private static final String TEST_URI = "test.smb.uri";
    public static Test suite() throws Exception
    {
        if (System.getProperty(TEST_URI) != null)
        {
            return new ProviderTestSuite(new SmbProviderTestCase());
        }
        else
        {
            return notConfigured(SmbProviderTestCase.class);
        }
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.