This commit is contained in:
Looly 2024-09-05 18:56:47 +08:00
parent 85815af0c7
commit 5da69e1f40

View 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"));
}
}