// The below is wrong; only the first rendition is used (eg ignores the |)
QTest::newRow("simple text with underline and italic rendition")<<"hello"<<QVector<RenditionFlags>(6).fill(RE_UNDERLINE|RE_ITALIC)<<"<span style=\"font-family:monospace\"><span style=\"font-decoration:underline;color:#000000;background-color:#ffffff;\">hello</span><br></span>";
// The below should likely have & replaced by &
QTest::newRow("text with &")<<"hello &there"<<QVector<RenditionFlags>(6).fill(DEFAULT_RENDITION)<<"<span style=\"font-family:monospace\"><span style=\"color:#000000;background-color:#ffffff;\">hello &there</span><br></span>";
QTest::newRow("text with &")<<"hello &there"<<QVector<RenditionFlags>(6).fill(DEFAULT_RENDITION)<<"<span style=\"font-family:monospace\"><span style=\"color:#000000;background-color:#ffffff;\">hello &there</span><br></span>";