Added test for spanish characters

This commit is contained in:
Javier Amor García
2015-11-12 17:47:04 +01:00
committed by Jesús García Sáez
parent 9ed3812795
commit 603da75818
2 changed files with 10 additions and 0 deletions
File diff suppressed because one or more lines are too long
+9
View File
@@ -296,4 +296,13 @@
againstExpectedHTML: expected];
}
- (void) test_spanish_accents
{
NSString *file =@"spanish_accents.rtf";
NSString *expected=@"<html><meta charset='utf-8'><body><font face=\"Calibri\"><font color=\"#000000\">xñxáxéxíxóxú</font><font color=\"#000000\"><br></font></font></body></html>";
[self checkHTMLConversionOfRTFFile: file
againstExpectedHTML: expected];
}
@end