Testcase for HSSFRow removal bug
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352355 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd7530444e
commit
d3bad2dd93
@ -94,4 +94,21 @@ public class TestHSSFRow
|
||||
assertEquals(2, row.getFirstCellNum());
|
||||
assertEquals(5, row.getLastCellNum());
|
||||
}
|
||||
|
||||
public void testRemoveCell()
|
||||
{
|
||||
HSSFWorkbook workbook = new HSSFWorkbook();
|
||||
HSSFSheet sheet = workbook.createSheet();
|
||||
HSSFRow row = sheet.createRow((short) 0);
|
||||
assertEquals(-1, row.getLastCellNum());
|
||||
row.createCell((short)1);
|
||||
assertEquals(1, row.getLastCellNum());
|
||||
row.createCell((short)3);
|
||||
assertEquals(3, row.getLastCellNum());
|
||||
row.removeCell(row.getCell((short)3));
|
||||
assertEquals(1, row.getLastCellNum());
|
||||
row.removeCell(row.getCell((short)1));
|
||||
assertEquals(-1, row.getLastCellNum());
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user