{
TestConnection c = (TestConnection)cm.allocateConnection(mcf, cri);
assertNotNull(c);
try
{
c.begin();
assertEquals(TestManagedConnection.LOCAL_TRANSACTION, c.getLocalState());
c.rollback();
assertEquals(TestManagedConnection.LOCAL_ROLLEDBACK, c.getLocalState());
}
finally