package com.alibaba.json.bvt.feature; import org.junit.Assert; import junit.framework.TestCase; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.serializer.SerializeConfig; import com.alibaba.fastjson.serializer.SerializerFeature; public class FeaturesTest7 extends TestCase { public void test_0() throws Exception { SerializeConfig config = new SerializeConfig(); config.setAsmEnable(false); String text = JSON.toJSONString(new Entity(), config); Assert.assertEquals("{\"value\":\"SECONDS\"}", text); } public void test_1() throws Exception { SerializeConfig config = new SerializeConfig(); config.setAsmEnable(true); String text = JSON.toJSONString(new Entity(), config); Assert.assertEquals("{\"value\":\"SECONDS\"}", text); } public static class Entity { private TimeUnit value = TimeUnit.SECONDS; @JSONField(serialzeFeatures = { SerializerFeature.WriteEnumUsingToString }) public TimeUnit getValue() { return value; } } public static enum TimeUnit { SECONDS, MINUTES } }