String text = udf.evaluate("[]", "$", new Long(1), new Long(2));
Assert.assertEquals("[1,2]", text);
}
public void test_double() throws Exception {
JSONArrayAdd udf = new JSONArrayAdd();
String text = udf.evaluate("[]", "$", 1D, 2D);
Assert.assertEquals("[1,2]", text);
}