| 63 | } |
| 64 | |
| 65 | void inComment() |
| 66 | { |
| 67 | DefaultCommentParser test; |
| 68 | |
| 69 | test.mCommentType = DefaultCommentParser::multiLine; |
| 70 | QVERIFY(test.inComment()); |
| 71 | |
| 72 | test.mCommentType = DefaultCommentParser::singleLine; |
| 73 | QVERIFY(test.inComment()); |
| 74 | |
| 75 | test.mCommentType = DefaultCommentParser::none; |
| 76 | QVERIFY(!test.inComment()); |
| 77 | } |
| 78 | |
| 79 | void multiLineComment() |
| 80 | { |
no outgoing calls
no test coverage detected