public void testConvertTofloat() throws Exception {
TestEntity te = TestEntity.createInstrance();
String jsonStr = JsonHelper.toJsonExt(te);
JSONObject jsonObj = new JSONObject(jsonStr);
float actual = new JsonConvert().convertTofloat(jsonObj.get("ffloat"));
junit.framework.Assert.assertEquals(te.getFfloat(), actual);
}