package com.alibaba.json.bvt.bug; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.parser.Feature; import junit.framework.TestCase; /** * Created by wenshao on 2016/11/17. */ public class Issue900 extends TestCase { public void test_for_issue() throws Exception { Model model = JSON.parseObject("{\"id\":123}", Model.class, Feature.SupportNonPublicField); assertEquals(123, model.id); } public static class Model { private int id; } }