use of org.apache.derbyTesting.functionTests.tests.tools.ImportExportProcedureTest in project derby by apache.
the class ImportExportProcedureESTest method suite.
/**
* Run tests from iepnegative.sql with es_MX locale.
* These have already been converted in tools/ImportExportProcedureTest
* So we will just run that whole test in es_MX
*/
public static Test suite() {
Test test = TestConfiguration.embeddedSuite(ImportExportProcedureTest.class);
Properties attributes = new Properties();
attributes.put("territory", "es_MX");
test = Decorator.attributesDatabase(attributes, test);
return new SupportFilesSetup(test, new String[] { "functionTests/testData/ImportExport/db2ttypes.del", "functionTests/testData/ImportExport/mixednl.del", "functionTests/testData/ImportExport/position_info.del" });
}
Aggregations