parent
7b7ef154d1
commit
b425c6045f
|
@ -12,7 +12,6 @@ import javax.persistence.TransactionRequiredException;
|
|||
|
||||
import org.hibernate.Session;
|
||||
import org.hibernate.cfg.AvailableSettings;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.hibernate.testing.TestForIssue;
|
||||
|
@ -20,6 +19,8 @@ import org.hibernate.testing.jta.TestingJtaBootstrap;
|
|||
import org.hibernate.testing.jta.TestingJtaPlatformImpl;
|
||||
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
|
||||
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
/**
|
||||
* @author Michiel Hendriks
|
||||
*/
|
||||
|
@ -42,7 +43,7 @@ public class TestFlushJoinTransaction extends BaseNonConfigCoreFunctionalTestCas
|
|||
TestingJtaPlatformImpl.INSTANCE.getTransactionManager().commit();
|
||||
}
|
||||
catch (TransactionRequiredException e) {
|
||||
Assert.fail("No TransactionRequiredException expected.");
|
||||
fail("No TransactionRequiredException expected.");
|
||||
}
|
||||
finally {
|
||||
session.close();
|
||||
|
@ -59,7 +60,23 @@ public class TestFlushJoinTransaction extends BaseNonConfigCoreFunctionalTestCas
|
|||
TestingJtaPlatformImpl.INSTANCE.getTransactionManager().commit();
|
||||
}
|
||||
catch (TransactionRequiredException e) {
|
||||
Assert.fail("No TransactionRequiredException expected.");
|
||||
fail("No TransactionRequiredException expected.");
|
||||
}
|
||||
finally {
|
||||
session.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testIsConnectedFlushShouldThrowExceptionIfNoTransaction() {
|
||||
Session session = openSession();
|
||||
try {
|
||||
session.isConnected();
|
||||
session.flush();
|
||||
fail("A TransactionRequiredException should be thrown");
|
||||
}
|
||||
catch (TransactionRequiredException e) {
|
||||
//expected
|
||||
}
|
||||
finally {
|
||||
session.close();
|
||||
|
|
Loading…
Reference in New Issue