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 index 000000000..204f3d04a --- /dev/null +++ b/src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java @@ -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(); + } + +}