use of org.apache.jena.graph.compose.DisjointUnion in project jena by apache.
the class TestDisjointUnion method testEmptyUnion.
public void testEmptyUnion() {
DisjointUnion du = new DisjointUnion(Graph.emptyGraph, Graph.emptyGraph);
assertEquals(true, du.isEmpty());
}
Aggregations