use of org.eclipse.rdf4j.model.impl.TreeModel in project rdf4j by eclipse.
the class StatementsTest method testNoContext.
@Test
public void testNoContext() {
Model m = Statements.create(vf, FOAF.AGE, RDF.TYPE, RDF.PROPERTY, new TreeModel());
assertFalse(m.isEmpty());
assertTrue(m.contains(FOAF.AGE, RDF.TYPE, RDF.PROPERTY));
}
Aggregations