JsonUtil.typedObjectFromValueAndField(jsonValue, field);
}
@Test
public void typedObjectFromIntAndFloat() throws CObjectParseException {
CField field = new CField("test", "float");
Integer jsonValue = 1234567890;
float expected = 1234567890f;
Object result = JsonUtil.typedObjectFromValueAndField(jsonValue, field);
assertEquals(expected, result);