public class SerializeWriterTest_7 extends TestCase {
public void test_0() throws Exception {
SerializeWriter out = new SerializeWriter(1);
out.config(SerializerFeature.QuoteFieldNames, true);
out.config(SerializerFeature.UseSingleQuotes, true);
out.writeFieldValue(',', "name", (Enum) null);
Assert.assertEquals(",'name':null", out.toString());
}
public void test_1() throws Exception {