use of org.apache.jena.sparql.expr.E_IsLiteral in project jena by apache.
the class ExprFactoryTest method isLiteralTest.
@Test
public void isLiteralTest() {
Expr e = factory.isLiteral(factory.none());
assertTrue(e instanceof E_IsLiteral);
}
Aggregations