@Test public void test14() {
HTML2WikiConverter conv = new HTML2WikiConverter();
// invalid nested html test
conv
.setInputHTML("<h2>the <a href=\"http://good\">good</a></h2><h3>the <div>bad</div></h3><h2>and <b><i>the</i> ugly</b></h2>");
String result = conv.toWiki(new ToMoinMoin());
assertThat("\n" + "== the good ==\n" + "\n" + "=== the bad ===\n" + "\n" + "== and the ugly ==\n").isEqualTo(result);
}