change test broken by bug-66988 change

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911755 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2023-08-18 13:08:13 +00:00
parent f07be05484
commit c3f4201831
2 changed files with 12 additions and 13 deletions

View File

@ -329,17 +329,6 @@ class TestXWPFBugs {
}
}
@Test
void bug66988() throws IOException {
try (XWPFDocument document = XWPFTestDataSamples.openSampleDocument("Bug66988.docx")) {
XWPFTableCell cell = document.getTableArray(0).getRow(0).getCell(0);
cell.appendText("World");
assertEquals("HelloWorld", cell.getText());
cell.setText("FooBar");
assertEquals("FooBar", cell.getText());
}
}
private static void addNumberingWithAbstractId(XWPFNumbering documentNumbering, int id){
// create a numbering scheme
CTAbstractNum cTAbstractNum = CTAbstractNum.Factory.newInstance();

View File

@ -262,8 +262,7 @@ class TestXWPFTableCell {
cell.setText("test text 1");
assertEquals("test text 1", cell.getText());
// currently the text is added, I am not sure if this is expected or not...
cell.setText("test text 2");
cell.appendText("test text 2");
assertEquals("test text 1test text 2", cell.getText());
}
@ -284,4 +283,15 @@ class TestXWPFTableCell {
XWPFTableCell readCell = readDoc.getTableArray(0).getRow(0).getCell(0);
assertEquals(0, readCell.getParagraphs().size());
}
@Test
void bug66988() throws IOException {
try (XWPFDocument document = XWPFTestDataSamples.openSampleDocument("Bug66988.docx")) {
XWPFTableCell cell = document.getTableArray(0).getRow(0).getCell(0);
cell.appendText("World");
assertEquals("HelloWorld", cell.getText());
cell.setText("FooBar");
assertEquals("FooBar", cell.getText());
}
}
}