mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Added more tests for preserve spaces
This commit is contained in:
parent
fa80313f6b
commit
3c83f7354e
@ -138,7 +138,11 @@ 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\">"
|
||||
@ -146,6 +150,10 @@ public class HtmlConverterTest extends TestCase {
|
||||
+ " bar<br />"
|
||||
+ " baz<br />"
|
||||
+ " <br />"
|
||||
+ " &<br />"
|
||||
+ " <br />"
|
||||
+ " <<br />"
|
||||
+ " ><br />"
|
||||
+ "</pre>", result);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user