Improved HWPF Range.replaceText, from N. Hira in bug #45001
[poi.git] / src / scratchpad / testcases / org / apache / poi / hwpf / HWPFTestCase.java
blobb831851a1e8d3a3526078a2705dad14ae794c64d
2 /* ====================================================================
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
10 http://www.apache.org/licenses/LICENSE-2.0
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ==================================================================== */
19 package org.apache.poi.hwpf;
21 import junit.framework.TestCase;
24 public abstract class HWPFTestCase
25 extends TestCase
27 protected HWPFDocFixture _hWPFDocFixture;
29 public HWPFTestCase()
33 protected void setUp()
34 throws Exception
36 super.setUp();
37 /**@todo verify the constructors*/
38 _hWPFDocFixture = new HWPFDocFixture(this);
40 _hWPFDocFixture.setUp();
43 protected void tearDown()
44 throws Exception
46 _hWPFDocFixture.tearDown();
48 _hWPFDocFixture = null;
49 super.tearDown();