diff options
author | Said Ryan Ackley <sackley@apache.org> | 2003-07-17 02:44:19 +0000 |
---|---|---|
committer | Said Ryan Ackley <sackley@apache.org> | 2003-07-17 02:44:19 +0000 |
commit | 719a15d05c9781ea2f6528896e2efd177495481f (patch) | |
tree | 64bceee02f015e40f5ff4d1d1b386ad5f8f7c9dc | |
parent | 3543ed5f16c86385099f7e199f4d010a192dd8d9 (diff) | |
download | poi-719a15d05c9781ea2f6528896e2efd177495481f.tar.gz poi-719a15d05c9781ea2f6528896e2efd177495481f.zip |
uses property from build file now
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353216 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java b/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java index abee2dbb58..dd6a0ffe35 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java @@ -23,6 +23,12 @@ public class HWPFDocFixture { try { + + String filename = System.getProperty("HSSF.testdata.path"); + + filename = filename + "/test.doc"; + + POIFSFileSystem filesystem = new POIFSFileSystem(new FileInputStream( "C:\\test.doc")); |