public class DefaultExtJSONParserTest_6 extends TestCase {
public void test_0() throws Exception {
DefaultExtJSONParser parser = new DefaultExtJSONParser("{value:{,,,,\"value\":3,\"id\":1}}");
parser.config(Feature.AllowArbitraryCommas, true);
Entity entity = new Entity();
parser.parseObject(entity);
Assert.assertEquals(3, entity.getValue().getValue());
}