use of com.arjuna.ats.internal.jts.orbspecific.recovery.recoverycoordinators.GenericRecoveryCoordinator in project narayana by jbosstm.
the class RecoveryCoordinatorUnitTest method testGeneric.
@Test
public void testGeneric() throws Exception {
GenericRecoveryCoordinator rec = new GenericRecoveryCoordinator(new Uid(), new Uid(), new Uid(), false);
rec.replay_completion(null);
assertTrue(GenericRecoveryCoordinator.makeId(new Uid(), new Uid(), new Uid(), true) != null);
assertEquals(GenericRecoveryCoordinator.reconstruct("foobar"), null);
}
Aggregations