Browse Source

add tests

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898278 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_1
PJ Fanning 2 years ago
parent
commit
f76a4e7fa0

+ 6
- 3
poi/src/test/java/org/apache/poi/ss/formula/functions/TestIndirect.java View File

@@ -201,10 +201,13 @@ final class TestIndirect {
@Test
void testR1C1FullRow() throws Exception {
try (HSSFWorkbook wbA = createWBA()) {
HSSFCell c = wbA.getSheetAt(0).createRow(100).createCell(0);
HSSFRow row = wbA.getSheetAt(0).createRow(100);
HSSFCell c0 = row.createCell(0);
HSSFCell c1 = row.createCell(1);
HSSFFormulaEvaluator feA = new HSSFFormulaEvaluator(wbA);
confirm(feA, c, "INDIRECT(\"R[-100]\", FALSE)", 11.0);
confirm(feA, c, "INDIRECT(\"R1\", FALSE)", 11.0);
confirm(feA, c0, "INDIRECT(\"R[-100]\", FALSE)", 11.0);
confirm(feA, c0, "INDIRECT(\"R1\", FALSE)", 11.0);
//assertEquals(12.0, c1.getNumericCellValue());
}
}


Loading…
Cancel
Save