Assert.assertEquals(3L, a.getV5().longValue());
}
public void test_5() throws Exception {
DefaultExtJSONParser parser = new DefaultExtJSONParser("{v5:\"3\"}");
parser.config(Feature.AllowUnQuotedFieldNames, true);
parser.config(Feature.AllowSingleQuotes, true);
A a = parser.parseObject(A.class);
Assert.assertEquals(3L, a.getV5().longValue());
}