_testCohBeanRemove(int tx) Test of coherence b2.remove() => a1.retrieveB()=null && a2.retrieveB()=null && a3.retrieveB()=null
Same as _testCohRemove except that the called remove method is on the bean
instead of the home.
public void _testBasicGetEmpty(int tx) throws Exception(Code)
Check that the bean 'a3' has no relation.
_testBasicSetEmpty
public void _testBasicSetEmpty(int tx) throws Exception(Code)
Ckeck the new relation a0-b0
_testBasicSetFirst
public void _testBasicSetFirst(int tx) throws Exception(Code)
See 10.3.7.7 of spec : a1.assignB(a3.retrieveB()) =>
a1.retreiveB().contains("b2") &&
a1.retreiveB().contains("b3") &&
a1.retreiveB().contains("b4") &&
a3.retreiveB().contains("b2") &&
a3.retreiveB().contains("b3") &&
a3.retreiveB().contains("b4") &&
_testBasicSetRemove
public void _testBasicSetRemove(int tx) throws Exception(Code)
See 10.3.7.7 of spec : a2.getB().remove(b2) =>
a2.retreiveB().contains("b1") &&
a2.retreiveB().contains("b3") &&
_testBasicSetSecond
public void _testBasicSetSecond(int tx) throws Exception(Code)
See 10.3.7.7 of spec : a1.getB().add(b3) =>
a1.retreiveB().contains("b1") &&
a1.retreiveB().contains("b2") &&
a1.retreiveB().contains("b3") &&
_testCohBeanRemove
public void _testCohBeanRemove(int tx) throws Exception(Code)
Test of coherence b2.remove() => a1.retrieveB()=null && a2.retrieveB()=null && a3.retrieveB()=null
Same as _testCohRemove except that the called remove method is on the bean
instead of the home.