use of com.alibaba.fastjson.serializer.MapSerializer in project fastjson by alibaba.
the class MapSerializerTest method test_singleton_1.
public void test_singleton_1() throws Exception {
SerializeWriter out = new SerializeWriter();
MapSerializer mapSerializer = new MapSerializer();
mapSerializer.write(new JSONSerializer(out), Collections.singletonMap("A", 1), null, null, 0);
Assert.assertEquals("{\"A\":1}", out.toString());
}
use of com.alibaba.fastjson.serializer.MapSerializer in project fastjson by alibaba.
the class MapSerializerTest method test_special2_s.
public void test_special2_s() throws Exception {
SerializeWriter out = new SerializeWriter();
MapSerializer mapSerializer = new MapSerializer();
mapSerializer.write(new JSONSerializer(out), Collections.singletonMap("A\nB", 1), null, null, 0);
Assert.assertEquals("{\"A\\nB\":1}", out.toString());
}
use of com.alibaba.fastjson.serializer.MapSerializer in project fastjson by alibaba.
the class MapSerializerTest method test_string2_s.
public void test_string2_s() throws Exception {
SerializeWriter out = new SerializeWriter();
MapSerializer mapSerializer = new MapSerializer();
Map<String, String> map = new LinkedHashMap<String, String>();
map.put("A", "1");
map.put("B", "2");
mapSerializer.write(new JSONSerializer(out), map, null, null, 0);
Assert.assertEquals("{\"A\":\"1\",\"B\":\"2\"}", out.toString());
}
use of com.alibaba.fastjson.serializer.MapSerializer in project fastjson by alibaba.
the class MapSerializerTest method test_empty_1.
public void test_empty_1() throws Exception {
SerializeWriter out = new SerializeWriter();
MapSerializer mapSerializer = new MapSerializer();
mapSerializer.write(new JSONSerializer(out), Collections.EMPTY_MAP, null, null, 0);
Assert.assertEquals("{}", out.toString());
}
use of com.alibaba.fastjson.serializer.MapSerializer in project fastjson by alibaba.
the class MapSerializerTest method test_special3_s.
public void test_special3_s() throws Exception {
SerializeWriter out = new SerializeWriter();
MapSerializer mapSerializer = new MapSerializer();
mapSerializer.write(new JSONSerializer(out), Collections.singletonMap("A\nB", Collections.EMPTY_MAP), null, null, 0);
Assert.assertEquals("{\"A\\nB\":{}}", out.toString());
}
Aggregations