mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add test
This commit is contained in:
parent
85815af0c7
commit
5da69e1f40
13
hutool-json/src/test/java/IssueIAP4GMTest.java
Normal file
13
hutool-json/src/test/java/IssueIAP4GMTest.java
Normal file
@ -0,0 +1,13 @@
|
||||
import cn.hutool.json.JSONObject;
|
||||
import cn.hutool.json.JSONUtil;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IssueIAP4GMTest {
|
||||
@Test
|
||||
void parse() {
|
||||
String res = "{\"uid\":\"asdf\\n\"}";
|
||||
final JSONObject entries = JSONUtil.parseObj(res);
|
||||
Assertions.assertEquals("asdf\n", entries.getStr("uid"));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user