FileDocCategorySizeDatePackage
CurrentSessionConnectionTest.javaAPI DocHibernate 3.2.5861Tue Dec 12 16:22:26 GMT 2006org.hibernate.test.connections

CurrentSessionConnectionTest.java

// $Id: CurrentSessionConnectionTest.java 10976 2006-12-12 23:22:26Z steve.ebersole@jboss.com $
package org.hibernate.test.connections;

import junit.framework.Test;

import org.hibernate.Session;
import org.hibernate.junit.functional.FunctionalTestClassTestSuite;

/**
 * Implementation of CurrentSessionConnectionTest.
 *
 * @author Steve Ebersole
 */
public class CurrentSessionConnectionTest extends AggressiveReleaseTest {

	public CurrentSessionConnectionTest(String name) {
		super( name );
	}

	public static Test suite() {
		return new FunctionalTestClassTestSuite( CurrentSessionConnectionTest.class );
	}

	protected Session getSessionUnderTest() throws Throwable {
		return getSessions().getCurrentSession();
	}

	protected void release(Session session) {
		// do nothing, txn synch should release session as part of current-session definition
	}
}