mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
add test
This commit is contained in:
parent
d84d033df8
commit
a157943e0c
@ -0,0 +1,20 @@
|
|||||||
|
package cn.hutool.poi.excel;
|
||||||
|
|
||||||
|
import cn.hutool.core.lang.Console;
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class Issue3698Test {
|
||||||
|
@Test
|
||||||
|
@Disabled
|
||||||
|
void readTest() {
|
||||||
|
ExcelReader reader = ExcelUtil.getReader("d:/test/default.xlsx", 0);
|
||||||
|
List<List<Object>> list = reader.read(0, Integer.MAX_VALUE, false);
|
||||||
|
for (List<Object> row : list) {
|
||||||
|
Console.log(row.get(1).getClass());
|
||||||
|
}
|
||||||
|
reader.close();
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user