Add test which verifies that bug 52684 is not a problem (any more)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1730948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2016-02-17 21:35:22 +00:00
parent 3cb72bfa7b
commit 5093542774

View File

@ -1403,4 +1403,28 @@ public abstract class BaseTestBugzillaIssues {
wb.close();
}
@Test
public void test52684() {
Workbook wb = _testDataProvider.createWorkbook();
Sheet sheet = wb.createSheet("test");
Row row = sheet.createRow(0);
Cell cell = row.createCell(0);
cell.setCellValue(12312345123L);
DataFormat format = wb.createDataFormat();
CellStyle style = wb.createCellStyle();
style.setDataFormat(format.getFormat("000-00000-000"));
cell.setCellStyle(style);
assertEquals("000-00000-000",
cell.getCellStyle().getDataFormatString());
assertEquals(164, cell.getCellStyle().getDataFormat());
DataFormatter formatter = new DataFormatter();
assertEquals("12-312-345-123", formatter.formatCellValue(cell));
}
}