@Test public void test15() {
HTML2WikiConverter conv = new HTML2WikiConverter();
// invalid nested html test
conv.setInputHTML("The <a href=\"http://good\">good</a> the <div>bad</div> and <b><i>the</i> ugly</b>");
String result = conv.toWiki(new ToJSPWiki());
assertThat("The [good] the bad and __\'\'the\'\' ugly__").isEqualTo(result);
}