use of org.apache.jena.sparql.expr.E_Coalesce in project jena by apache.
the class ExprFactoryTest method coalesceTest.
@Test
public void coalesceTest() {
Expr e = factory.coalesce(factory.list());
assertTrue(e instanceof E_Coalesce);
}
Aggregations