mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix bug
This commit is contained in:
@@ -783,4 +783,15 @@ public class ExcelWriteTest {
|
||||
writer.write(ListUtil.of(hyperlink));
|
||||
writer.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void mergeNumberTest(){
|
||||
File tempFile=new File("d:/test/mergeNumber.xlsx");
|
||||
FileUtil.del(tempFile);
|
||||
|
||||
BigExcelWriter writer= new BigExcelWriter(tempFile);
|
||||
writer.merge(0,1,2,2,3.99,false);
|
||||
writer.close();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user