From 2b3403aa23376bddc000e9c7d9dd4b35d2283f20 Mon Sep 17 00:00:00 2001 From: Said Ryan Ackley Date: Wed, 3 Mar 2004 00:18:48 +0000 Subject: [PATCH] initial check in git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353524 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/poi/hwpf/HWPFTestCase.java | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java 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 0000000000..204f3d04a7 --- /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(); + } + +} -- 2.39.5