mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
ENH: backdoor to disable @Transactional during unit testing (#1756)
This commit is contained in:
committed by
Rob Bygrave
parent
945175c533
commit
f77388738b
@@ -2,6 +2,7 @@ package io.ebeaninternal.api;
|
||||
|
||||
import io.ebean.Ebean;
|
||||
import io.ebean.TxScope;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.tests.model.basic.Contact;
|
||||
import org.tests.model.basic.Customer;
|
||||
@@ -33,4 +34,17 @@ public class HelpScopeTransTest {
|
||||
HelpScopeTrans.exit(null, 1);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void disableTransaction() {
|
||||
HelpScopeTrans.setEnabled(false);
|
||||
|
||||
try {
|
||||
HelpScopeTrans.enter(TxScope.required());
|
||||
Assert.assertNull(Ebean.getDefaultServer().currentTransaction());
|
||||
HelpScopeTrans.exit(null, 1);
|
||||
} finally {
|
||||
HelpScopeTrans.setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user