diff options
author | Jason Height <jheight@apache.org> | 2005-08-18 07:06:44 +0000 |
---|---|---|
committer | Jason Height <jheight@apache.org> | 2005-08-18 07:06:44 +0000 |
commit | ada69333b277a95ccfc608144b991cfd8d1a9d37 (patch) | |
tree | 824f57aa008b9d2e526fbffb23fcf40aa3e7e19a /src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java | |
parent | c4fea20971ac2efc7766f88e546924dadaa7959a (diff) | |
download | poi-ada69333b277a95ccfc608144b991cfd8d1a9d37.tar.gz poi-ada69333b277a95ccfc608144b991cfd8d1a9d37.zip |
Major landing of the following changes:
1) Full implementation of UnicodeStrings
2) exposure of RichText strings to the usermodel
3) Modification to SSTRecord to support duplicates. Fixes a few bugs
4) RecordInputStream *smart* ?? handeling of continue records!
Phew This took 6 months on and off to put together. Just happy to commit somethig
Report any problems!
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353769 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java')
-rw-r--r-- | src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java b/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java index 26f6cccb3a..811d2d363e 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java @@ -851,7 +851,7 @@ extends TestCase { File file = TempFile.createTempFile("testDateFormula",".xls"); FileOutputStream out = new FileOutputStream(file); HSSFWorkbook wb = new HSSFWorkbook(); - HSSFSheet s = wb.createSheet("Sheet1"); + HSSFSheet s = wb.createSheet("testSheet1"); HSSFRow r = null; HSSFCell c = null; @@ -889,7 +889,7 @@ extends TestCase { File file = TempFile.createTempFile("testIfFormula",".xls"); FileOutputStream out = new FileOutputStream(file); HSSFWorkbook wb = new HSSFWorkbook(); - HSSFSheet s = wb.createSheet("Sheet1"); + HSSFSheet s = wb.createSheet("testSheet1"); HSSFRow r = null; HSSFCell c = null; r = s.createRow((short)0); @@ -926,7 +926,7 @@ extends TestCase { File simpleIf = TempFile.createTempFile("testSimpleIfFormulaWrite",".xls"); out = new FileOutputStream(simpleIf); wb = new HSSFWorkbook(); - s = wb.createSheet("Sheet1"); + s = wb.createSheet("testSheet1"); r = null; c = null; r = s.createRow((short)0); @@ -941,7 +941,7 @@ extends TestCase { File nestedIf = TempFile.createTempFile("testNestedIfFormula",".xls"); out = new FileOutputStream(nestedIf); wb = new HSSFWorkbook(); - s = wb.createSheet("Sheet1"); + s = wb.createSheet("testSheet1"); r = null; c = null; r = s.createRow((short)0); |