package com.fanruan.api.json; import com.fanruan.api.util.ArrayKit; import com.fr.json.JSONObject; import org.junit.Assert; import org.junit.Test; public class JSONKitTest { @Test public void create() throws Exception{ Assert.assertEquals(JSONKit.create(), new JSONObject()); Assert.assertEquals(JSONKit.create("{test:123}"), new JSONObject("{test:123}")); } }