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:
Yegor Kozlov 2009-12-28 13:45:10 +00:00
parent 89c140c265
commit a64917fe88
5 changed files with 4 additions and 8 deletions

View File

@ -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.