| 127 | } |
| 128 | |
| 129 | static void testMessageParser(mailcore::Data * data) |
| 130 | { |
| 131 | mailcore::MessageParser * parser = mailcore::MessageParser::messageParserWithData(data); |
| 132 | MCLog("%s", MCUTF8DESC(parser)); |
| 133 | MCLog("HTML rendering"); |
| 134 | MCLog("%s", MCUTF8(parser->htmlRendering())); |
| 135 | MCLog("%s", MCUTF8(parser->plainTextBodyRendering(true))); |
| 136 | MCLog("%s", MCUTF8(parser->plainTextBodyRendering(false))); |
| 137 | } |
| 138 | |
| 139 | static void testIMAP() |
| 140 | { |
nothing calls this directly
no test coverage detected