Bug 46817 - Regression: Text from some table cells missing is fixed

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1143772 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-07 11:41:53 +00:00
parent 9a5143cf4f
commit f19392c371

View File

@ -474,21 +474,18 @@ public final class TestProblems extends HWPFTestCase {
} }
/** /**
* [FAILING] Bug 46817 - Text from tables is not extracted * [RESOLVED FIXED] Bug 46817 - Regression: Text from some table cells
* missing
*/ */
public void test46817() { public void test46817()
HWPFDocument doc = HWPFTestDataSamples.openSampleFile("Bug46817.doc"); {
WordExtractor extractor = new WordExtractor(doc); HWPFDocument doc = HWPFTestDataSamples.openSampleFile( "Bug46817.doc" );
WordExtractor extractor = new WordExtractor( doc );
String text = extractor.getText().trim(); String text = extractor.getText().trim();
try {
assertTrue(text.contains("Nazwa wykonawcy"));
assertTrue(text.contains("kujawsko-pomorskie"));
assertTrue(text.contains("ekomel@ekomel.com.pl"));
fixed("46817"); assertTrue( text.contains( "Nazwa wykonawcy" ) );
} catch (AssertionFailedError e) { assertTrue( text.contains( "kujawsko-pomorskie" ) );
// expected exception assertTrue( text.contains( "ekomel@ekomel.com.pl" ) );
}
} }
/** /**