| 31 | } |
| 32 | |
| 33 | void TestVcsItemEvent::compareItemEvent(const VcsItemEvent& itemEvent, |
| 34 | const QString& repositoryLocation, |
| 35 | const QString& repositoryCopySourceLocation, |
| 36 | const VcsRevision& repositoryCopySourceRevision, |
| 37 | VcsItemEvent::Actions actions) |
| 38 | { |
| 39 | QCOMPARE(itemEvent.repositoryLocation(), repositoryLocation); |
| 40 | QCOMPARE(itemEvent.repositoryCopySourceLocation(), repositoryCopySourceLocation); |
| 41 | QCOMPARE(itemEvent.repositoryCopySourceRevision(), repositoryCopySourceRevision); |
| 42 | QCOMPARE(itemEvent.actions(), actions); |
| 43 | } |
| 44 | |
| 45 | void TestVcsItemEvent::testCopyConstructor() |
| 46 | { |
nothing calls this directly
no test coverage detected