This commit is contained in:
Looly
2024-08-30 11:54:19 +08:00
parent b8991dbb76
commit 275092af2f
11 changed files with 321 additions and 141 deletions

View File

@@ -213,6 +213,17 @@ public class ExcelWriteTest {
writer.close();
}
@Test
@Disabled
public void mergeNotExistCellTest(){
final ExcelWriter writer = ExcelUtil.getWriter()
.merge(5);
writer
.flush(FileUtil.file("d:/test/mergeNotExist.xlsx"), true)
.close();
}
@Test
@Disabled
public void mergeTest2() {