| 219 | // ── Verify comment color is VS Code green ── |
| 220 | |
| 221 | void testCommentColor() { |
| 222 | QsciScintilla sci; |
| 223 | setupRenderedSci(&sci); |
| 224 | |
| 225 | auto* lexer = qobject_cast<QsciLexerCPP*>(sci.lexer()); |
| 226 | QVERIFY(lexer != nullptr); |
| 227 | |
| 228 | QCOMPARE(lexer->color(QsciLexerCPP::Comment), QColor("#6a9955")); |
| 229 | QCOMPARE(lexer->color(QsciLexerCPP::CommentLine), QColor("#6a9955")); |
| 230 | } |
| 231 | |
| 232 | // ── Verify number color is VS Code light green ── |
| 233 |
nothing calls this directly
no test coverage detected