double15 = ((Double)cell.getValue()).doubleValue();
assertEquals(-12345678901234500000d, double15, 0d);
}
public void testSetEditTextWithTextFormat() {
Sheet sheet1 = ((BookImpl)_book).addSheet("sheet1", 256, 64*1024);
assertEquals(sheet1, _book.lookupSheet("sheet1"));
CellImpl cell = (CellImpl) sheet1.setCellValue(0, 0, null);
FormatImpl format = new FormatImpl();
format.setFormatCodes("@");
cell.setFormat(format);
cell.setEditText("05-15743"); //A1
assertEquals("05-15743", cell.getText());