Assert.assertEquals(new NodeValueBoolean(true), actual);
}
@Test
public void test_function_expansion_02() {
Expr e = new E_Multiply(new ExprVar("x"), new ExprVar("x"));
UserDefinedFunctionFactory.getFactory().add("http://example/square", e, new ArrayList<>(e.getVarsMentioned()));
UserDefinedFunction f = (UserDefinedFunction) UserDefinedFunctionFactory.getFactory().create("http://example/square");
f.build("http://example/square", new ExprList(new NodeValueInteger(3)));