Adjust test to handle a file correctly which works for normal handling but fails expectedly in text-extraction testing.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676902 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2015-04-30 05:50:49 +00:00
parent 157c994ee8
commit dcfe4f77b7
1 changed files with 3 additions and 2 deletions

View File

@ -284,8 +284,6 @@ public class TestAllFiles {
try {
handler.handleFile(stream);
assertFalse("Expected to fail for file " + file + " and handler " + handler + ", but did not fail!",
EXPECTED_FAILURES.contains(file));
assertFalse("Expected to fail for file " + file + " and handler " + handler + ", but did not fail!",
OLD_FILES.contains(file));
} finally {
@ -293,6 +291,9 @@ public class TestAllFiles {
}
handler.handleExtracting(inputFile);
assertFalse("Expected to fail for file " + file + " and handler " + handler + ", but did not fail!",
EXPECTED_FAILURES.contains(file));
} catch (OldWordFileFormatException e) {
// for old word files we should still support extracting text
if(OLD_FILES.contains(file)) {