package com.alibaba.json.bvt.serializer.features; import org.junit.Assert; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.serializer.SerializerFeature; import junit.framework.TestCase; public class WriteNonStringValueAsStringTestShortField extends TestCase { public void test_0() throws Exception { VO vo = new VO(); vo.id = 100; String text = JSON.toJSONString(vo, SerializerFeature.WriteNonStringValueAsString); Assert.assertEquals("{\"id\":\"100\"}", text); } public static class VO { public short id; } }