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