Added more tests for preserve spaces

This commit is contained in:
Koji Arai 2013-05-09 23:07:58 +09:00
parent fa80313f6b
commit 3c83f7354e
1 changed files with 10 additions and 2 deletions

View File

@ -138,14 +138,22 @@ public class HtmlConverterTest extends TestCase {
String message = "foo\n"
+ " bar\n"
+ " baz\n"
+ "\n";
+ " \n"
+ " &\n"
+ " \r\n"
+ " <\n"
+ " >\n";
String result = HtmlConverter.textToHtml(message);
writeToFile(result);
assertEquals("<pre class=\"k9mail\">"
+ "foo<br />"
+ " bar<br />"
+ " baz<br />"
+ "<br />"
+ " <br />"
+ " &amp;<br />"
+ " <br />"
+ " &lt;<br />"
+ " &gt;<br />"
+ "</pre>", result);
}
}