public void testQuoteAsString() throws Exception
{
JsonStringEncoder encoder = new JsonStringEncoder();
char[] result = encoder.quoteAsString("foobar");
assertArrayEquals("foobar".toCharArray(), result);
result = encoder.quoteAsString("\"x\"");
assertArrayEquals("\\\"x\\\"".toCharArray(), result);
}
// For [JACKSON-853]
public void testQuoteLongAsString() throws Exception