}
public void testSpecialFunction3() {
final String nm = "fun3.xls";
Book book = new ExcelImporter().imports(getClass().getResource("/"+nm));
Sheet sheet1 = (Sheet) book.getSheets().get(0);
Cell cellA1 = sheet1.getCell(0,0);
assertEquals("=DB(3000000.0,200000.0,10.0,2.0,9.0)", cellA1.getEditText());
Cell cellA2 = sheet1.getCell(1,0);
assertEquals("=PMT(0.1/12.0,6.0,100000.0,2000.0,1.0)", cellA2.getEditText());