use of org.apache.derbyTesting.junit.SupportFilesSetup in project derby by apache.
the class Changes10_4 method suite.
/**
* Return the suite of tests to test the changes made in 10.4.
* @param phase an integer that indicates the current phase in
* the upgrade test.
* @return the test suite created.
*/
public static Test suite(int phase) {
BaseTestSuite suite = new BaseTestSuite("Upgrade test for 10.4");
suite.addTestSuite(Changes10_4.class);
return new SupportFilesSetup((Test) suite);
}
use of org.apache.derbyTesting.junit.SupportFilesSetup in project derby by apache.
the class Changes10_6 method suite.
/**
* Return the suite of tests to test the changes made in 10.6.
* @param phase an integer that indicates the current phase in
* the upgrade test.
* @return the test suite created.
*/
public static Test suite(int phase) {
BaseTestSuite suite = new BaseTestSuite("Upgrade test for 10.6");
suite.addTestSuite(Changes10_6.class);
return new SupportFilesSetup((Test) suite);
}
use of org.apache.derbyTesting.junit.SupportFilesSetup in project derby by apache.
the class UpgradeTrajectoryTest method suite.
// /////////////////////////////////////////////////////////////////////////////////
//
// JUnit BEHAVIOR
//
// /////////////////////////////////////////////////////////////////////////////////
/**
* Return the suite of tests.
*/
public static Test suite() {
BaseTestSuite suite = new BaseTestSuite("Upgrade trajectory test");
addTrajectories(suite);
Test sfs = new SupportFilesSetup((Test) suite);
return SecurityManagerSetup.noSecurityManager(sfs);
}
Aggregations