| 61 | } |
| 62 | |
| 63 | void compareFixitsWithoutDescription(const ClangFixits& a, const ClangFixits& b) |
| 64 | { |
| 65 | if (a.size() != b.size()) { |
| 66 | qDebug() << "a:" << a; |
| 67 | qDebug() << "b:" << b; |
| 68 | } |
| 69 | QCOMPARE(a.size(), b.size()); |
| 70 | const int size = a.size(); |
| 71 | for (int i = 0; i < size; ++i) { |
| 72 | compareFixitWithoutDescription(a.at(i), b.at(i)); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | } |
| 77 |
no test coverage detected