diff options
author | Nick Burch <nick@apache.org> | 2008-02-01 15:41:32 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2008-02-01 15:41:32 +0000 |
commit | feeb8cca63644fa9da275979943748875c6dfb94 (patch) | |
tree | a3442a5b9236339f5ec522a093129a40fb51d543 /src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java | |
parent | dafc074271c69a561a243e58a9f78cd9bc24bcf4 (diff) | |
download | poi-feeb8cca63644fa9da275979943748875c6dfb94.tar.gz poi-feeb8cca63644fa9da275979943748875c6dfb94.zip |
Get the Hyperlink record code so that it doesn't break any existing tests, and add in (no usermodel support yet though)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@617523 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java')
-rw-r--r-- | src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java index ee3cace263..482ae7c6cd 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java @@ -310,6 +310,12 @@ extends TestCase { in.close(); } + public void testWithHyperlinks() throws Exception { + String dir = System.getProperty("HSSF.testdata.path"); + File f = new File(dir, "WithHyperlink.xls"); + HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(f)); + } + /*tests the toString() method of HSSFCell*/ public void testToString() throws Exception { HSSFWorkbook wb = new HSSFWorkbook(); |