change name

This commit is contained in:
Looly
2020-12-07 19:06:23 +08:00
parent 775afa68cc
commit ea070bf83e
7 changed files with 18 additions and 15 deletions

View File

@@ -13,21 +13,21 @@ public class JSONStrFormaterTest {
@Test
public void formatTest() {
String json = "{'age':23,'aihao':['pashan','movies'],'name':{'firstName':'zhang','lastName':'san','aihao':['pashan','movies','name':{'firstName':'zhang','lastName':'san','aihao':['pashan','movies']}]}}";
String result = JSONStrFormater.format(json);
String result = JSONStrFormatter.format(json);
Assert.assertNotNull(result);
}
@Test
public void formatTest2() {
String json = "{\"abc\":{\"def\":\"\\\"[ghi]\"}}";
String result = JSONStrFormater.format(json);
String result = JSONStrFormatter.format(json);
Assert.assertNotNull(result);
}
@Test
public void formatTest3() {
String json = "{\"id\":13,\"title\":\"《标题》\",\"subtitle\":\"副标题z'c'z'xv'c'xv\",\"user_id\":6,\"type\":0}";
String result = JSONStrFormater.format(json);
String result = JSONStrFormatter.format(json);
Assert.assertNotNull(result);
}
}