]> source.dussan.org Git - poi.git/commitdiff
removed svn:eol-style=native from binary files, uncommented related tests; see Bugzil...
authorYegor Kozlov <yegor@apache.org>
Mon, 28 Dec 2009 13:45:10 +0000 (13:45 +0000)
committerYegor Kozlov <yegor@apache.org>
Mon, 28 Dec 2009 13:45:10 +0000 (13:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@894173 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/testcases/org/apache/poi/hdf/model/TestHDFDocument.java
test-data/document/empty.doc
test-data/document/simple-list.doc
test-data/document/simple-table.doc
test-data/document/simple.doc

index 42f79caf407f2c5e697810c83165fdb745c82917..52ceda1c95be49142039dda4e3aa22e127345d18 100644 (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);
     }
index 1b4ac2d922b9b461325b854b640dbb760dd98da8..ceb841ce68e4bc0d4961cdad97a467e84bfb8165 100644 (file)
Binary files a/test-data/document/empty.doc and b/test-data/document/empty.doc differ
index 8ff94b21e87e026d10c567ded674f9fe86905395..75ed42e07e7ace39517d5a70c1f7044d3d0cb80a 100644 (file)
Binary files a/test-data/document/simple-list.doc and b/test-data/document/simple-list.doc differ
index 5249334172c181bf4aec79244d4cd88616adb970..6453e45b4cb425bffef7a48f8bf961a1379924d2 100644 (file)
Binary files a/test-data/document/simple-table.doc and b/test-data/document/simple-table.doc differ
index 11262f996ed8b66722c5924bb5265f4eefe70622..ac0384ac25269d12d778a0d65ce48e74e0541462 100644 (file)
Binary files a/test-data/document/simple.doc and b/test-data/document/simple.doc differ