forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
392 B
16 lines
392 B
6 years ago
|
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}"));
|
||
|
|
||
|
}
|
||
|
}
|