~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/connections/ConnectionsSuite.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $Id: ConnectionsSuite.java 10976 2006-12-12 23:22:26Z steve.ebersole@jboss.com $
 
2
package org.hibernate.test.connections;
 
3
 
 
4
import junit.framework.Test;
 
5
import junit.framework.TestSuite;
 
6
 
 
7
/**
 
8
 * Implementation of ConnectionsSuite.
 
9
 *
 
10
 * @author Steve Ebersole
 
11
 */
 
12
public class ConnectionsSuite {
 
13
 
 
14
        public static Test suite() {
 
15
                TestSuite suite = new TestSuite( "Connection-management tests");
 
16
                suite.addTest( AggressiveReleaseTest.suite() );
 
17
                suite.addTest( BasicConnectionProviderTest.suite() );
 
18
                suite.addTest( CurrentSessionConnectionTest.suite() );
 
19
                suite.addTest( SuppliedConnectionTest.suite() );
 
20
                suite.addTest( ThreadLocalCurrentSessionTest.suite() );
 
21
                return suite;
 
22
        }
 
23
}