use of org.jboss.arquillian.junit.InSequence in project wildfly by wildfly.
the class ImplementValidityAuditStrategyTestCase method testEnversforValidityStrategy.
@Test
@InSequence(1)
public void testEnversforValidityStrategy() throws Exception {
SLSBValidityStrategyOrg slsbvalidityOrg = lookup("SLSBValidityStrategyOrg", SLSBValidityStrategyOrg.class);
Organization o1 = slsbvalidityOrg.createOrg("REDHAT", "Software Co", "10/10/1994", "eternity", "Raleigh");
Organization o2 = slsbvalidityOrg.createOrg("HALDIRAMS", "Food Co", "10/10/1974", "eternity", "Delhi");
o2.setStartDate("10/10/1924");
o2.setName("BIKANER");
slsbvalidityOrg.updateOrg(o2);
Organization ret1 = slsbvalidityOrg.retrieveOldOrgbyId(o2.getId());
// check that property startDate is audited
Assert.assertEquals("10/10/1974", ret1.getStartDate());
Assert.assertEquals("HALDIRAMS", ret1.getName());
// check that property location is notaudited
Assert.assertNull(ret1.getLocation());
}
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());
}
Aggregations