use of org.apache.jena.graph.TransactionHandler in project jena by apache.
the class TestSpecials method sink_graph_txn_3.
@Test(expected = JenaException.class)
public void sink_graph_txn_3() {
DatasetGraph dsg = DatasetGraphSink.create();
Graph g = dsg.getDefaultGraph();
TransactionHandler h = g.getTransactionHandler();
h.begin();
h.begin();
}
Aggregations