use of org.jboss.arquillian.junit.InSequence in project deltaspike by apache.
the class JtaTransactionalRepositoryAbstractTest method dep_scoped_bean_should_be_empty_after_tx.
@Test
@InSequence(32)
public void dep_scoped_bean_should_be_empty_after_tx() throws Exception {
// when
Simple simple = simpleClientDep.getSimple();
// then
assertNotNull(simple);
}
use of org.jboss.arquillian.junit.InSequence in project deltaspike by apache.
the class JtaTransactionalRepositoryAbstractTest method should_save_when_dep_scoped_bean_is_found.
@Test
@InSequence(31)
public void should_save_when_dep_scoped_bean_is_found() throws Exception {
// when
Simple simple = simpleClientDep.createSimple("dependent");
Simple found = repository.findOptionalByName("dependent");
// then
assertNull(simple);
assertNull(found);
}
use of org.jboss.arquillian.junit.InSequence in project deltaspike by apache.
the class JtaTransactionalRepositoryInterfaceTest method should_save_in_transaction.
@Test
@InSequence(2)
public void should_save_in_transaction() throws Exception {
// given
Simple simple = new Simple(NAME);
// when
simple = repository.save(simple);
// then
assertNotNull(simple.getId());
assertTrue(wrapper.isRunInTx());
}
use of org.jboss.arquillian.junit.InSequence in project deltaspike by apache.
the class DeltaSpikeTransactionalRepositoryAbstractTest method should_save_in_transaction.
@Test
@InSequence(2)
public void should_save_in_transaction() throws Exception {
// given
Simple simple = new Simple(NAME);
// when
simple = repository.save(simple);
// then
assertNotNull(simple.getId());
assertTrue(wrapper.isRunInTx());
}
use of org.jboss.arquillian.junit.InSequence in project deltaspike by apache.
the class JtaTransactionalRepositoryAbstractTest method should_save_when_app_scoped_bean_is_found.
@Test
@InSequence(21)
public void should_save_when_app_scoped_bean_is_found() throws Exception {
// when
Simple simple = simpleClientApp.createSimple("application scoped");
Simple found = repository.findOptionalByName("application scoped");
// then
assertNotNull(simple);
assertNotNull(found);
assertEquals("application scoped", found.getName());
}
Aggregations