package com.alibaba.json.bvt.serializer;
import junit.framework.Assert;
import junit.framework.TestCase;
import com.alibaba.fastjson.serializer.IntegerSerializer;
import com.alibaba.fastjson.serializer.JSONSerializerMap;
@SuppressWarnings("deprecation")
public class JSONSerializerMapTest extends TestCase {
public void test_0() throws Exception {
JSONSerializerMap map = new JSONSerializerMap();
Assert.assertFalse(0 == map.size());
Assert.assertEquals(true, map.get(Integer.class) == IntegerSerializer.instance);
Assert.assertEquals(true, map.put(Integer.class, IntegerSerializer.instance));
Assert.assertEquals(true, map.put(Integer.class, IntegerSerializer.instance));
Assert.assertEquals(true, map.put(Integer.class, IntegerSerializer.instance));
Assert.assertEquals(true, map.get(Integer.class) == IntegerSerializer.instance);
Assert.assertFalse(0 == map.size());
}
}