mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
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:
parent
117e591778
commit
26de25b7d3
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user