Test to show that bug #57430 works fine already

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1651314 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2015-01-13 09:57:46 +00:00
parent 113edb1a76
commit c4eb73a28b

View File

@ -2038,4 +2038,18 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues {
System.clearProperty("poi.log.level");
}
}
@Test
public void bug57430() throws Exception {
XSSFWorkbook wb = new XSSFWorkbook();
try {
wb.createSheet("Sheet1");
XSSFName name1 = wb.createName();
name1.setNameName("FMLA");
name1.setRefersToFormula("Sheet1!$B$3");
} finally {
wb.close();
}
}
}