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
113edb1a76
commit
c4eb73a28b
@ -2038,4 +2038,18 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues {
|
|||||||
System.clearProperty("poi.log.level");
|
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…
Reference in New Issue
Block a user