private final static Var x = Var.alloc("x");
public void testEmptyGraphAndBGP() {
NodeRelation nodeRel = translate1(Collections.<Triple>emptyList(), Collections.<TripleRelation>emptyList());
assertEquals(Relation.TRUE, nodeRel.baseRelation());
assertEquals(Collections.EMPTY_SET, nodeRel.variables());
}
public void testEmptyGraph() {
assertNull(translate1("?subject ?predicate ?object", Collections.<TripleRelation>emptyList()));