initial check in
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
462b3aaba1
commit
c23677244f
39
src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java
Normal file
39
src/scratchpad/src/org/apache/poi/hwpf/HWPFTestCase.java
Normal file
@ -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();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user