blob: 2ceef5efc38285036a42fdc66786ae187ebd0d6f [file] [log] [blame]
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.tools._Suite
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License
*/
package org.apache.derbyTesting.functionTests.tests.tools;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.JDBC;
/**
* Suite to run all JUnit tests in this package:
* org.apache.derbyTesting.functionTests.tests.tools
*
*/
public class _Suite extends BaseTestCase {
/**
* Use suite method instead.
*/
private _Suite(String name) {
super(name);
}
public static Test suite() {
BaseTestSuite suite = new BaseTestSuite("tools");
suite.addTest(IJRunScriptTest.suite());
suite.addTest(ImportExportTest.suite());
suite.addTest(ImportExportBinaryDataTest.suite());
suite.addTest(ImportExportLobTest.suite());
suite.addTest(ImportExportProcedureTest.suite());
suite.addTest(ImportExportIJTest.suite());
suite.addTest(ij2Test.suite());
suite.addTest(ToolScripts.suite());
suite.addTest(SysinfoCPCheckTest.suite());
suite.addTest(SysinfoLocaleTest.suite());
suite.addTest(IjSecurityManagerTest.suite());
suite.addTest(IjConnNameTest.suite());
suite.addTest(RollBackWrappingWhenFailOnImportTest.suite());
suite.addTest(ConnectWrongSubprotocolTest.suite());
suite.addTest(derbyrunjartest.suite());
suite.addTest(ij3Test.suite());
suite.addTest(Test_6661.suite());
// SysinfoAPITest currently fails when run against jars, so is
// disabled. Only the first jar file on the classpath properly
// returns its information through the sysinfo API.
// See also DERBY-2343.
//
//suite.addTest(SysinfoAPITest.suite());
// tests that do not run with JSR169
if (JDBC.vmSupportsJDBC3())
{
suite.addTest(ij5Test.suite());
}
// Tests that are compiled using 1.4 target need to
// be added this way, otherwise creating the suite
// will throw an invalid class version error
if (JDBC.vmSupportsJDBC3() || JDBC.vmSupportsJSR169()) {
}
return suite;
}
}