Package com.alibaba.json.bvt.fullSer.get_set_Test

Examples of com.alibaba.json.bvt.fullSer.get_set_Test.VO


import com.alibaba.json.bvt.fullSer.get_set_Test.VO;

public class is_set_test_2 extends TestCase {

    public void test_codec() throws Exception {
        VO vo = new VO();
        vo.set_flag(true);

        String text = JSON.toJSONString(vo);
        Assert.assertEquals("{\"flag\":true}", text);
        VO vo1 = JSON.parseObject(text, VO.class);
        Assert.assertEquals(true, vo1.is_flag());
    }
View Full Code Here


import com.alibaba.json.bvt.fullSer.get_set_Test.VO;

public class getfTest_2 extends TestCase {

    public void test_codec() throws Exception {
        VO vo = new VO();
        vo.setfFlag(true);

        String text = JSON.toJSONString(vo);
        Assert.assertEquals("{\"fFlag\":true}", text);
        VO vo1 = JSON.parseObject(text, VO.class);
        Assert.assertEquals(true, vo1.isfFlag());
    }
View Full Code Here

import com.alibaba.json.bvt.fullSer.get_set_Test.VO;

public class getfTest extends TestCase {

    public void test_codec() throws Exception {
        VO vo = new VO();
        vo.setfId(123);
       
        String text = JSON.toJSONString(vo);
        Assert.assertEquals("{\"fId\":123}", text);
        VO vo1 = JSON.parseObject(text, VO.class);
        Assert.assertEquals(123, vo1.getfId());
    }
View Full Code Here

TOP

Related Classes of com.alibaba.json.bvt.fullSer.get_set_Test.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.