Package com.alibaba.json.bvt.parser.JSONScannerTest_scanFieldBoolean

Examples of com.alibaba.json.bvt.parser.JSONScannerTest_scanFieldBoolean.VO


public class JSONScannerTest_scanFieldBoolean_unquote extends TestCase {

    public void test_4() throws Exception {
        String text = "{\"value\":false,id:2}";
        VO obj = JSON.parseObject(text, VO.class);
        Assert.assertEquals(false, obj.getValue());
    }
View Full Code Here

TOP

Related Classes of com.alibaba.json.bvt.parser.JSONScannerTest_scanFieldBoolean.VO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.