TestEntity te = TestEntity.createInstrance();
String jsonStr = JsonHelper.toJsonExt(te);
JSONObject jsonObj = new JSONObject(jsonStr);
TestEntityII actual = (TestEntityII) new JsonConvert().convertToT(
jsonObj.get("fObject"), TestEntityII.class);
junit.framework.Assert.assertEquals(
((TestEntityII) te.getFObject()).getId(), actual.getId());
junit.framework.Assert.assertEquals(