01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package org.apache.commons.dbcp;
19:
20: import junit.framework.*;
21: import org.apache.commons.dbcp.datasources.TestSharedPoolDataSource;
22: import org.apache.commons.dbcp.datasources.TestPerUserPoolDataSource;
23: import org.apache.commons.dbcp.datasources.TestFactory;
24:
25: /**
26: * @author Rodney Waldhoff
27: * @version $Revision: 479137 $ $Date: 2006-11-25 08:51:48 -0700 (Sat, 25 Nov 2006) $
28: */
29: public class TestAll extends TestCase {
30: public TestAll(String testName) {
31: super (testName);
32: }
33:
34: public static Test suite() {
35: TestSuite suite = new TestSuite();
36: suite.addTest(TestAbandonedObjectPool.suite());
37: suite.addTest(TestManual.suite());
38: suite.addTest(TestJOCLed.suite());
39: suite.addTest(TestBasicDataSourceFactory.suite());
40: suite.addTest(TestBasicDataSource.suite());
41: suite.addTest(TestAbandonedBasicDataSource.suite());
42: suite.addTest(TestPStmtPoolingBasicDataSource.suite());
43: suite.addTest(TestDelegatingConnection.suite());
44: suite.addTest(TestDelegatingStatement.suite());
45: suite.addTest(TestDelegatingPreparedStatement.suite());
46: suite.addTest(TestPoolableConnection.suite());
47: suite.addTest(TestSharedPoolDataSource.suite());
48: suite.addTest(TestPerUserPoolDataSource.suite());
49: suite.addTest(TestFactory.suite());
50: return suite;
51: }
52:
53: public static void main(String args[]) {
54: String[] testCaseName = { TestAll.class.getName() };
55: junit.textui.TestRunner.main(testCaseName);
56: }
57: }
|