public void test_1 () throws Exception {
SerializeWriter out = new SerializeWriter(SerializerFeature.UseSingleQuotes);
out.writeString("abc中文");
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
out.writeTo(byteOut, "UTF-8");
Assert.assertEquals("'abc中文'", new String(byteOut.toByteArray(), "UTF-8"));
}
public void test_2 () throws Exception {
SerializeWriter out = new SerializeWriter(SerializerFeature.UseSingleQuotes);