Assert.assertEquals(",\"name\":null", out.toString());
}
public void test_3() throws Exception {
SerializeWriter out = new SerializeWriter(1);
out.config(SerializerFeature.QuoteFieldNames, true);
out.config(SerializerFeature.UseSingleQuotes, true);
out.writeFieldValue(',', "name", (String) null);
Assert.assertEquals(",'name':null", out.toString());
}