mirror of https://github.com/apache/poi.git
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:
parent
945f390dbb
commit
1f40d2a3c6
|
@ -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) {
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue