Undo a toString() removal for a case where it is actually necessary.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1583571 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2014-04-01 08:28:52 +00:00
parent 1c987c38e6
commit aef13a344a

View File

@ -31,8 +31,8 @@ public final class TestEscherGraphics2d extends TestCase {
private HSSFShapeGroup escherGroup;
private EscherGraphics2d graphics;
protected void setUp() {
@Override
protected void setUp() {
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet("test");
escherGroup = sheet.createDrawingPatriarch().createGroup(new HSSFClientAnchor(0,0,1023,255,(short)0,0,(short) 0,0));
@ -44,7 +44,7 @@ public final class TestEscherGraphics2d extends TestCase {
public void testDrawString() {
graphics.drawString("This is a test", 10, 10);
HSSFTextbox t = (HSSFTextbox) escherGroup.getChildren().get(0);
assertEquals("This is a test", t.getString());
assertEquals("This is a test", t.getString().getString());
// Check that with a valid font, it's still ok
Font font = new Font("Forte", Font.PLAIN, 12);