aboutsummaryrefslogtreecommitdiffstats
path: root/src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java
diff options
context:
space:
mode:
authorJason Height <jheight@apache.org>2005-08-18 07:06:44 +0000
committerJason Height <jheight@apache.org>2005-08-18 07:06:44 +0000
commitada69333b277a95ccfc608144b991cfd8d1a9d37 (patch)
tree824f57aa008b9d2e526fbffb23fcf40aa3e7e19a /src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java
parentc4fea20971ac2efc7766f88e546924dadaa7959a (diff)
downloadpoi-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/TestEscherGraphics2d.java')
-rw-r--r--src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java b/src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java
index a47d9acb50..b4957eae57 100644
--- a/src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java
+++ b/src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java
@@ -48,7 +48,7 @@ public class TestEscherGraphics2d extends TestCase
{
graphics.drawString("This is a test", 10, 10);
HSSFTextbox t = (HSSFTextbox) escherGroup.getChildren().get(0);
- assertEquals("This is a test", t.getString().toString());
+ assertEquals("This is a test", t.getString().getString().toString());
}
public void testFillRect() throws Exception