Adjust excludes for TestRecordLister

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1698081 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2015-08-27 06:32:33 +00:00
parent 945f390dbb
commit 1f40d2a3c6
2 changed files with 10 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public abstract class BaseXLSIteratingTest {
protected static final List<String> EXCLUDED = new ArrayList<String>();
@Parameters(name="{index}: {0} using {1}")
@Parameters(name="{index}: {0}")
public static Iterable<Object[]> files() {
String dataDirName = System.getProperty(POIDataSamples.TEST_PROPERTY);
if(dataDirName == null) {

View File

@ -26,6 +26,8 @@ public class TestRecordLister extends BaseXLSIteratingTest {
EXCLUDED.add("46904.xls");
EXCLUDED.add("testEXCEL_3.xls"); // Biff 3 / Excel 3, pre-OLE2
EXCLUDED.add("testEXCEL_4.xls"); // old unsupported format
EXCLUDED.add("testEXCEL_5.xls"); // Biff 5 / Excel 5
EXCLUDED.add("testEXCEL_95.xls"); // Biff 5 / Excel 95
}
@Override
@ -42,4 +44,11 @@ public class TestRecordLister extends BaseXLSIteratingTest {
System.setOut(save);
}
}
//@Test
public void testFile() throws IOException {
RecordLister viewer = new RecordLister();
viewer.setFile(new File("test-data/spreadsheet/testEXCEL_95.xls").getAbsolutePath());
viewer.run();
}
}