Package org.apache.derbyTesting.junit

Examples of org.apache.derbyTesting.junit.BaseTestSuite.addTestSuite()


    public static Test suite()
    {
       
        BaseTestSuite suite = new BaseTestSuite("Replication_Full Suite");
       
        suite.addTestSuite( ReplicationRun_Full.class );
       
        return SecurityManagerSetup.noSecurityManager(suite);
    }
   
    //////////////////////////////////////////////////////////////
View Full Code Here


    public static Test suite()
    {
        BaseTestSuite suite =
            new BaseTestSuite("ReplicationRun_Distributed Suite");
       
        suite.addTestSuite( ReplicationRun_Distributed.class );
       
        return SecurityManagerSetup.noSecurityManager(suite);
    }
   
    //////////////////////////////////////////////////////////////
View Full Code Here

    public static Test suite()
    {
        BaseTestSuite suite =
            new BaseTestSuite("ReplicationRun_Local_StateTest_part1_2 Suite");
       
        suite.addTestSuite( ReplicationRun_Local_StateTest_part1_2.class );
       
        return SecurityManagerSetup.noSecurityManager(suite);
    }
   
    //////////////////////////////////////////////////////////////
View Full Code Here

       
    public static Test suite()
    {
        BaseTestSuite suite = new BaseTestSuite("ReplicationRun_CleanUp");
       
        suite.addTestSuite( ReplicationRun_CleanUp.class );
       
        return SecurityManagerSetup.noSecurityManager(suite);
    }
   
    public void testReplication_CleanUp()
View Full Code Here

    public static Test suite()
    {
        BaseTestSuite suite =
            new BaseTestSuite("ReplicationRun_Local_1 Suite");
       
        suite.addTestSuite( ReplicationRun_Local_1.class );
       
        return SecurityManagerSetup.noSecurityManager(suite);

    }
   
View Full Code Here

    public static Test suite()
    {
        BaseTestSuite suite =
            new BaseTestSuite("ReplicationRun_Local_3_p1 Suite");
       
        suite.addTestSuite( ReplicationRun_Local_3_p1.class        );
       
        return SecurityManagerSetup.noSecurityManager(suite);

    }
   
View Full Code Here

     * @return the test suite created.
     */
    public static Test suite(int phase) {
        BaseTestSuite suite = new BaseTestSuite("Upgrade test for 10.7");

        suite.addTestSuite(Changes10_7.class);
        return new SupportFilesSetup((Test) suite);
    }

    ///////////////////////////////////////////////////////////////////////////////////
    //
View Full Code Here

     * @return the test suite created.
     */  
    public static Test suite(int phase) {
        BaseTestSuite suite = new BaseTestSuite("Upgrade changes for 10.3");
       
        suite.addTestSuite(Changes10_3.class);
       
        //Add the tests for the Stored procedures related to the locator
        //implementation of the LOB related JDBC methods. This needs to be done
        //only during the hard(full) upgrade phase.
        if(phase == PH_HARD_UPGRADE) {
View Full Code Here

        //only during the hard(full) upgrade phase.
        if(phase == PH_HARD_UPGRADE) {
            if (JDBC.vmSupportsJDBC3())
            {
                //Tests for the Blob related locator StoredProcedures
                suite.addTestSuite(BlobStoredProcedureTest.class);
                //Tests for the Clob related locator StoredProcedures
                suite.addTestSuite(ClobStoredProcedureTest.class);
            }
        }
       
View Full Code Here

            if (JDBC.vmSupportsJDBC3())
            {
                //Tests for the Blob related locator StoredProcedures
                suite.addTestSuite(BlobStoredProcedureTest.class);
                //Tests for the Clob related locator StoredProcedures
                suite.addTestSuite(ClobStoredProcedureTest.class);
            }
        }
       
        return new SupportFilesSetup((Test) suite);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.