Search in sources :

Example 1 with Simple

use of org.apache.deltaspike.data.test.ee7.domain.Simple 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);
}
Also used : Simple(org.apache.deltaspike.data.test.ee7.domain.Simple) Test(org.junit.Test) InSequence(org.jboss.arquillian.junit.InSequence)

Example 2 with Simple

use of org.apache.deltaspike.data.test.ee7.domain.Simple 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);
}
Also used : Simple(org.apache.deltaspike.data.test.ee7.domain.Simple) Test(org.junit.Test) InSequence(org.jboss.arquillian.junit.InSequence)

Example 3 with Simple

use of org.apache.deltaspike.data.test.ee7.domain.Simple 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());
}
Also used : Simple(org.apache.deltaspike.data.test.ee7.domain.Simple) Test(org.junit.Test) InSequence(org.jboss.arquillian.junit.InSequence)

Example 4 with Simple

use of org.apache.deltaspike.data.test.ee7.domain.Simple in project deltaspike by apache.

the class SimpleClientDep method createSimple.

public Simple createSimple(String name) {
    Simple simple = new Simple(name);
    simpleHolder.setSimple(simple);
    return repo.saveOnMatchDep(simple);
}
Also used : Simple(org.apache.deltaspike.data.test.ee7.domain.Simple)

Example 5 with Simple

use of org.apache.deltaspike.data.test.ee7.domain.Simple in project deltaspike by apache.

the class SimpleClientTx method createSimple.

public Simple createSimple(String name) {
    Simple simple = new Simple(name);
    simpleHolder.setSimple(simple);
    return repo.saveOnMatchTx(simple);
}
Also used : Simple(org.apache.deltaspike.data.test.ee7.domain.Simple)

Aggregations

Simple (org.apache.deltaspike.data.test.ee7.domain.Simple)21 InSequence (org.jboss.arquillian.junit.InSequence)18 Test (org.junit.Test)18