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

Method testSuitesForProject

kdevplatform/shell/testcontroller.cpp:86–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84
85
86QList< ITestSuite* > TestController::testSuitesForProject(IProject* project) const
87{
88 Q_D(const TestController);
89
90 QList<ITestSuite*> suites;
91 for (ITestSuite* suite : std::as_const(d->suites)) {
92 if (suite->project() == project)
93 {
94 suites << suite;
95 }
96 }
97 return suites;
98}
99
100void TestController::notifyTestRunFinished(ITestSuite* suite, const TestResult& result)
101{

Callers 8

findByProjectMethod · 0.80
ProjectTestJobMethod · 0.80
fillEditFromPatchMethod · 0.80
runAllTestsMethod · 0.80
runSelectedTestsMethod · 0.80
waitForSuitesFunction · 0.80
testCTestSuiteMethod · 0.80
testQtTestCasesMethod · 0.80

Calls 1

projectMethod · 0.45

Tested by

no test coverage detected