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));
}