mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
!322 修复了工程从仓库拉取到本地后执行./hutool.sh install脚本后运行报错的问题
Merge pull request !322 from ujshenry/v5-master
This commit is contained in:
commit
105e712a68
@ -8,7 +8,7 @@ import cn.hutool.core.util.CharsetUtil;
|
||||
import lombok.Data;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@ -77,6 +77,7 @@ public class CsvReaderTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void readTest2(){
|
||||
final CsvReader reader = CsvUtil.getReader();
|
||||
final CsvData read = reader.read(FileUtil.file("d:/test/test.csv"));
|
||||
|
@ -9,7 +9,7 @@ import org.junit.Test;
|
||||
public class ExtractorTest {
|
||||
|
||||
@Test
|
||||
// @Ignore
|
||||
@Ignore
|
||||
public void zipTest(){
|
||||
Extractor extractor = CompressUtil.createExtractor(
|
||||
CharsetUtil.defaultCharset(),
|
||||
|
@ -219,6 +219,7 @@ public class ExcelReadTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void readEmptyTest(){
|
||||
final ExcelReader reader = ExcelUtil.getReader("d:/test/issue.xlsx");
|
||||
final List<Map<String, Object>> maps = reader.readAll();
|
||||
|
@ -3,6 +3,7 @@ package cn.hutool.poi.excel;
|
||||
import cn.hutool.poi.excel.cell.CellLocation;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.Ignore;
|
||||
|
||||
public class ExcelUtilTest {
|
||||
|
||||
@ -44,6 +45,7 @@ public class ExcelUtilTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void readAndWriteTest(){
|
||||
ExcelReader reader = ExcelUtil.getReader("d:\\test/select.xls");
|
||||
ExcelWriter writer = reader.getWriter();
|
||||
|
Loading…
x
Reference in New Issue
Block a user