Home >> All >> org >> hibernate >> test >> [ connections Javadoc ] |
Source code: org/hibernate/test/connections/ConnectionsSuite.java
1 // $Id: ConnectionsSuite.java 6974 2005-05-31 21:32:56Z steveebersole $ 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( BasicConnectionProviderTest.suite() ); 17 suite.addTest( SuppliedConnectionTest.suite() ); 18 suite.addTest( AggressiveReleaseTest.suite() ); 19 suite.addTest( CurrentSessionConnectionTest.suite() ); 20 return suite; 21 } 22 }