]> source.dussan.org Git - poi.git/commitdiff
initial check in
authorSaid Ryan Ackley <sackley@apache.org>
Wed, 3 Mar 2004 00:18:48 +0000 (00:18 +0000)
committerSaid Ryan Ackley <sackley@apache.org>
Wed, 3 Mar 2004 00:18:48 +0000 (00:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353524 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java [new file with mode: 0644]

diff --git a/src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java b/src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java
new file mode 100644 (file)
index 0000000..204f3d0
--- /dev/null
@@ -0,0 +1,39 @@
+package org.apache.poi.hwpf;
+
+import junit.framework.*;
+import org.apache.poi.hwpf.*;
+import org.apache.poi.hwpf.model.io.*;
+
+import java.io.*;
+import java.util.*;
+
+
+public class HWPFTestCase
+  extends TestCase
+{
+  protected HWPFDocFixture _hWPFDocFixture;
+
+  public HWPFTestCase()
+  {
+  }
+
+  protected void setUp()
+    throws Exception
+  {
+    super.setUp();
+    /**@todo verify the constructors*/
+    _hWPFDocFixture = new HWPFDocFixture(this);
+
+    _hWPFDocFixture.setUp();
+  }
+
+  protected void tearDown()
+    throws Exception
+  {
+    _hWPFDocFixture.tearDown();
+
+    _hWPFDocFixture = null;
+    super.tearDown();
+  }
+
+}