Переглянути джерело

change test broken by bug-66988 change

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911755 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_4
PJ Fanning 9 місяці тому
джерело
коміт
c3f4201831

+ 0
- 11
poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFBugs.java Переглянути файл

@@ -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();

+ 12
- 2
poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTableCell.java Переглянути файл

@@ -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());
}
}
}

Завантаження…
Відмінити
Зберегти