mirror of https://github.com/apache/poi.git
testcase for bug 14460
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353379 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd3be5c254
commit
38e383cf5d
Binary file not shown.
|
@ -141,5 +141,15 @@ extends TestCase {
|
|||
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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue