package org.test4j.json.decoder.array; import org.test4j.json.JSON; import org.test4j.testng.Test4J; import org.testng.annotations.Test; public class FloatArrayDecoderTest extends Test4J { @Test(groups = { "test4j", "json" }) public void testParseFromJSONArray() { String json = "['12',12.4,\"45.6f\"]"; Float[] ints = JSON.toObject(json, float[].class); want.array(ints).sizeEq(3).reflectionEq(new float[] { 12f, 12.4f, 45.6f }); } }