diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToHtmlConverter.java b/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToHtmlConverter.java index 420add745..0cee3e7e2 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToHtmlConverter.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToHtmlConverter.java @@ -90,6 +90,12 @@ public class TestWordToHtmlConverter extends TestCase .contains( "" ) ); } + public void testEmailhyperlink() throws Exception + { + String result = getHtmlText( "Bug47286.doc" ); + assertTrue( result.contains( "provisastpet@mfa.gov.cy" ) ); + } + public void testEquation() throws Exception { String result = getHtmlText( "equation.doc" );