mirror of https://github.com/apache/poi.git
add test case of processing of Bug47286.doc by Word-to-HTML converter
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1150600 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
48a0c99ab2
commit
6fb017ee9c
|
@ -120,6 +120,16 @@ public class TestWordToHtmlConverter extends TestCase
|
||||||
assertContains( result, substring );
|
assertContains( result, substring );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void testBug47286() throws Exception
|
||||||
|
{
|
||||||
|
String result = getHtmlText( "Bug47286.doc" );
|
||||||
|
|
||||||
|
assertFalse( result.contains( "FORMTEXT" ) );
|
||||||
|
|
||||||
|
assertContains( result, "Passport No and the date of expire" );
|
||||||
|
assertContains( result, "mfa.gov.cy" );
|
||||||
|
}
|
||||||
|
|
||||||
public void testBug48075() throws Exception
|
public void testBug48075() throws Exception
|
||||||
{
|
{
|
||||||
getHtmlText( "Bug48075.doc" );
|
getHtmlText( "Bug48075.doc" );
|
||||||
|
|
Loading…
Reference in New Issue