mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
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:
parent
f07be05484
commit
c3f4201831
@ -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();
|
||||
|
||||
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user