Swapped deprecated code

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@696111 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Josh Micich 2008-09-17 00:03:07 +00:00
parent 830c19add4
commit 6ff869b74b

View File

@ -48,29 +48,19 @@ public final class TestNper extends TestCase {
} }
public void testEvaluate_bug_45732() { public void testEvaluate_bug_45732() {
// TODO - fix deprecated code etc
HSSFWorkbook wb = new HSSFWorkbook(); HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("Sheet1"); HSSFSheet sheet = wb.createSheet("Sheet1");
HSSFCell cell = sheet.createRow(0).createCell((short)0); HSSFCell cell = sheet.createRow(0).createCell(0);
cell.setCellFormula("NPER(12,4500,100000,100000)"); cell.setCellFormula("NPER(12,4500,100000,100000)");
cell.setCellValue(15.0); cell.setCellValue(15.0);
assertEquals("NPER(12,4500,100000.0,100000.0)", cell.getCellFormula()); assertEquals("NPER(12,4500,100000.0,100000.0)", cell.getCellFormula());
// assertEquals(HSSFCell.CELL_TYPE_NUMERIC, cell.getCachedFormulaResultType()); assertEquals(HSSFCell.CELL_TYPE_NUMERIC, cell.getCachedFormulaResultType());
assertEquals(15.0, cell.getNumericCellValue(), 0.0); assertEquals(15.0, cell.getNumericCellValue(), 0.0);
HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(sheet, wb); HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
fe.setCurrentRow(sheet.getRow(0));
fe.evaluateFormulaCell(cell); fe.evaluateFormulaCell(cell);
// assertEquals(HSSFCell.CELL_TYPE_ERROR, cell.getCachedFormulaResultType()); assertEquals(HSSFCell.CELL_TYPE_ERROR, cell.getCachedFormulaResultType());
try {
if(cell.getNumericCellValue() == 15.0) {
throw new AssertionFailedError("Identified bug 45732");
}
} catch (RuntimeException e) {
// expected during successful test
assertEquals("Cannot get a numeric value from a error formula cell", e.getMessage());
}
assertEquals(HSSFErrorConstants.ERROR_NUM, cell.getErrorCellValue()); assertEquals(HSSFErrorConstants.ERROR_NUM, cell.getErrorCellValue());
} }