| 36 | } |
| 37 | |
| 38 | void TestVcsAnnotationLine::compareAnnotationLine(const VcsAnnotationLine& annotationLine, |
| 39 | int lineNumber, |
| 40 | const QString& text, |
| 41 | const QString& author, |
| 42 | const VcsRevision& revision, |
| 43 | const QDateTime& date, |
| 44 | const QString& commitMessage) |
| 45 | { |
| 46 | QCOMPARE(annotationLine.lineNumber(), lineNumber); |
| 47 | QCOMPARE(annotationLine.text(), text); |
| 48 | QCOMPARE(annotationLine.author(), author); |
| 49 | QCOMPARE(annotationLine.revision(), revision); |
| 50 | QCOMPARE(annotationLine.date(), date); |
| 51 | QCOMPARE(annotationLine.commitMessage(), commitMessage); |
| 52 | } |
| 53 | |
| 54 | void TestVcsAnnotationLine::testCopyConstructor() |
| 55 | { |
nothing calls this directly
no test coverage detected