git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353379
13f79535-47bb-0310-9956-
ffa450edef68
wb.write(fileOut);
fileOut.close();
}
-
+
+ /** test reading of a formula with a name and a cell ref in one
+ **/
+ public void test14460() throws Exception {
+ String filename = System.getProperty("HSSF.testdata.path");
+ filename=filename+"/14460.xls";
+ FileInputStream in = new FileInputStream(filename);
+ HSSFWorkbook wb = new HSSFWorkbook(in);
+ HSSFSheet sheet = wb.getSheetAt(0);
+ assertTrue("No exception throws", true);
+ }
}