Examples of CRLFStringTestModel


Examples of org.slim3.json.test.CRLFStringTestModel

import com.google.appengine.api.datastore.Text;

public class CRLFStringTest {
    @Test
    public void modelToJson() throws Exception{
        CRLFStringTestModel m = new CRLFStringTestModel();
        m.setStringValue("hello\b\f\n\r\t\"\u1234world");
        m.setTextValue(new Text("hello\b\f\n\r\t\"\u1234world"));
        Assert.assertEquals(
            "{\"stringValue\":\"hello\\b\\f\\n\\r\\t\\\"\u1234world\"," +
            "\"textValue\":\"hello\\b\\f\\n\\r\\t\\\"\u1234world\"}"
            , CRLFStringTestModelMeta.get().modelToJson(m));
    }
View Full Code Here

Examples of org.slim3.json.test.CRLFStringTestModel

            , CRLFStringTestModelMeta.get().modelToJson(m));
    }

    @Test
    public void jsonToModel() throws Exception{
        CRLFStringTestModel m = meta.jsonToModel(
            "{\"stringValue\":\"hello\\b\\f\\n\\r\\t\\\"\u1234world\"," +
            "\"textValue\":\"hello\\b\\f\\n\\r\\t\\\"\u1234world\"}"
            );
        Assert.assertEquals("hello\b\f\n\r\t\"\u1234world", m.getStringValue());
        Assert.assertEquals("hello\b\f\n\r\t\"\u1234world", m.getTextValue().getValue());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.