package com.alibaba.json.bvt.parser.deser; import org.junit.Assert; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONException; import com.alibaba.fastjson.parser.Feature; import junit.framework.TestCase; public class ConstructorErrorTest_initError extends TestCase { public void test_error() throws Exception { Exception error = null; try { JSON.parseObject("{}", Model.class, Feature.InitStringFieldAsEmpty); } catch (JSONException ex) { error = ex; } Assert.assertNotNull(error); } public static class Model { public Model(){ } public void setName(String name) { throw new IllegalStateException(); } } }