diff options
author | Yegor Kozlov <yegor@apache.org> | 2009-12-28 13:45:10 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2009-12-28 13:45:10 +0000 |
commit | 5c08e67cd0055d09e267719098ffe73015ced326 (patch) | |
tree | 32e4b42483f14360a3c2cf26033344b34ad0c7ab /src | |
parent | e4a4574a1edd3fcab17356792e7ecb4aba2315f1 (diff) | |
download | poi-5c08e67cd0055d09e267719098ffe73015ced326.tar.gz poi-5c08e67cd0055d09e267719098ffe73015ced326.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/scratchpad/testcases/org/apache/poi/hdf/model/TestHDFDocument.java | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/scratchpad/testcases/org/apache/poi/hdf/model/TestHDFDocument.java b/src/scratchpad/testcases/org/apache/poi/hdf/model/TestHDFDocument.java index 42f79caf40..52ceda1c95 100644 --- a/src/scratchpad/testcases/org/apache/poi/hdf/model/TestHDFDocument.java +++ b/src/scratchpad/testcases/org/apache/poi/hdf/model/TestHDFDocument.java @@ -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); } |