use of org.apache.jena.dboe.transaction.txn.Transaction in project jena by apache.
the class TestTransactionLifecycle2 method txn_direct_02.
@Test(expected = TransactionException.class)
public void txn_direct_02() {
Transaction txn1 = txnMgr.begin(TxnType.WRITE);
txn1.end();
checkClear();
}
Aggregations