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:
Dominik Stadler 2015-05-20 19:13:36 +00:00
parent 001cdeb936
commit 8cf9eaa685

View File

@ -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();
}
}