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
b6b2107794
commit
fe01021c72
35
hutool-json/src/test/java/cn/hutool/json/Issue3588Test.java
Normal file
35
hutool-json/src/test/java/cn/hutool/json/Issue3588Test.java
Normal file
@ -0,0 +1,35 @@
|
||||
package cn.hutool.json;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import lombok.Data;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class Issue3588Test {
|
||||
|
||||
@Test
|
||||
public void toBeanIgnoreCaseTest() {
|
||||
String json = "{id: 1, code: 1122, tsemaphores: [{type: 1, status: 12}]}";
|
||||
AttrData attrData = JSONUtil.toBean(json, JSONConfig.create().setIgnoreCase(true), AttrData.class);
|
||||
Assert.assertEquals("1", attrData.getId());
|
||||
Assert.assertEquals("1122", attrData.getCode());
|
||||
Assert.assertEquals("1", attrData.getTSemaphores().get(0).getType());
|
||||
Assert.assertEquals("12", attrData.getTSemaphores().get(0).getStatus());
|
||||
}
|
||||
|
||||
@Data
|
||||
static class AttrData {
|
||||
private String id;
|
||||
private String code;
|
||||
private List<TSemaphore> tSemaphores = new ArrayList<>();
|
||||
}
|
||||
|
||||
@Data
|
||||
static class TSemaphore{
|
||||
private String type;
|
||||
private String status;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user