MCPcopy Create free account
hub / github.com/KDE/kdevelop / compareFixitsWithoutDescription

Function compareFixitsWithoutDescription

plugins/clang/tests/test_problems.cpp:63–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void 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

Callers 1

testMissingIncludeMethod · 0.85

Calls 3

sizeMethod · 0.45
atMethod · 0.45

Tested by

no test coverage detected