mirror of https://github.com/apache/poi.git
Add verification unit test for bug 47169
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1680657 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f3872cbcf4
commit
e15c254996
|
@ -417,4 +417,13 @@ public abstract class BaseTestSheetShiftRows extends TestCase {
|
|||
}
|
||||
}
|
||||
|
||||
}
|
||||
public void test47169() throws IOException {
|
||||
Workbook wb = _testDataProvider.createWorkbook();
|
||||
Sheet sheet = wb.createSheet();
|
||||
sheet.createRow(30);
|
||||
sheet.shiftRows(29, 29, 1, true, true);
|
||||
sheet.createRow(30);
|
||||
|
||||
wb.close();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue