public void test_put_array_long() throws Exception {
Map<String, Object> root = new HashMap<String, Object>();
root.put("values", new long[0]);
JSONPath path = new JSONPath("$.values");
path.arrayAdd(root, 123);
long[] array = (long[]) root.get("values");
Assert.assertEquals(1, array.length);
Assert.assertEquals(123, array[0]);
}