mirror of https://github.com/apache/poi.git
removed svn:eol-style=native from binary files, uncommented related tests; see Bugzilla 48427
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@894173 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e4a4574a1e
commit
5c08e67cd0
|
@ -33,17 +33,13 @@ import org.apache.poi.POIDataSamples;
|
|||
public final class TestHDFDocument extends TestCase {
|
||||
private static final POIDataSamples _samples = POIDataSamples.getDocumentInstance();
|
||||
|
||||
public void testStopJUnitComplainintAboutNoTests() {
|
||||
// TODO - fix these junits
|
||||
}
|
||||
|
||||
/**
|
||||
* OBJECTIVE: Test that HDF can read an empty document (empty.doc).<P>
|
||||
* SUCCESS: HDF reads the document. Matches values in their particular positions.<P>
|
||||
* FAILURE: HDF does not read the document or excepts. HDF cannot identify values
|
||||
* in the document in their known positions.<P>
|
||||
*/
|
||||
public void fixme_testEmpty() throws IOException {
|
||||
public void testEmpty() throws IOException {
|
||||
InputStream stream = _samples.openResourceAsStream("empty.doc");
|
||||
new HDFDocument(stream);
|
||||
}
|
||||
|
@ -54,7 +50,7 @@ public final class TestHDFDocument extends TestCase {
|
|||
* FAILURE: HDF does not read the document or excepts. HDF cannot identify values
|
||||
* in the document in their known positions.<P>
|
||||
*/
|
||||
public void fixme_testSimple() throws IOException {
|
||||
public void testSimple() throws IOException {
|
||||
InputStream stream = _samples.openResourceAsStream("simple.doc");
|
||||
new HDFDocument(stream);
|
||||
}
|
||||
|
@ -66,7 +62,7 @@ public final class TestHDFDocument extends TestCase {
|
|||
* in the document in their known positions.<P>
|
||||
*
|
||||
*/
|
||||
public void fixme_testSimpleList() throws IOException {
|
||||
public void testSimpleList() throws IOException {
|
||||
InputStream stream = _samples.openResourceAsStream("simple-list.doc");
|
||||
new HDFDocument(stream);
|
||||
}
|
||||
|
@ -77,7 +73,7 @@ public final class TestHDFDocument extends TestCase {
|
|||
* FAILURE: HDF does not read the document or excepts. HDF cannot identify values
|
||||
* in the document in their known positions.<P>
|
||||
*/
|
||||
public void fixme_testSimpleTable() throws IOException {
|
||||
public void testSimpleTable() throws IOException {
|
||||
InputStream stream = _samples.openResourceAsStream("simple-table.doc");
|
||||
new HDFDocument(stream);
|
||||
}
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue