use of com.arjuna.ats.internal.jta.resources.jts.orbspecific.LastResourceRecord in project narayana by jbosstm.
the class LastResourceRecordUnitTest method test.
@Test
public void test() throws Exception {
TransactionImple tx = new TransactionImple();
LastResourceRecord rec = new LastResourceRecord(tx, new DummyXA(false), tx.getTxId(), null);
rec.commit();
assertEquals(rec.prepare(), Vote.VoteCommit);
assertTrue(rec.toString() != null);
assertFalse(rec.saveRecord());
assertTrue(rec.type() != null);
}
Aggregations