| 20 | } |
| 21 | |
| 22 | void TestVcsAnnotationLine::setAnnotationLine(VcsAnnotationLine& annotationLine, |
| 23 | int lineNumber, |
| 24 | const QString& text, |
| 25 | const QString& author, |
| 26 | const VcsRevision& revision, |
| 27 | const QDateTime& date, |
| 28 | const QString& commitMessage) |
| 29 | { |
| 30 | annotationLine.setLineNumber(lineNumber); |
| 31 | annotationLine.setText(text); |
| 32 | annotationLine.setAuthor(author); |
| 33 | annotationLine.setRevision(revision); |
| 34 | annotationLine.setDate(date); |
| 35 | annotationLine.setCommitMessage(commitMessage); |
| 36 | } |
| 37 | |
| 38 | void TestVcsAnnotationLine::compareAnnotationLine(const VcsAnnotationLine& annotationLine, |
| 39 | int lineNumber, |
nothing calls this directly
no test coverage detected