| 492 | } |
| 493 | |
| 494 | static void cleanupTestSuites(const QVector<CTestSuite*>& testSuites, const QVector<CTestFindJob*>& testSuiteJobs) |
| 495 | { |
| 496 | for (auto* testSuiteJob : testSuiteJobs) { |
| 497 | testSuiteJob->kill(KJob::Quietly); |
| 498 | } |
| 499 | for (auto* testSuite : testSuites) { |
| 500 | ICore::self()->testController()->removeTestSuite(testSuite); |
| 501 | delete testSuite; |
| 502 | } |
| 503 | } |
| 504 | |
| 505 | void CMakeManager::integrateData(const CMakeProjectData &data, KDevelop::IProject* project, const QSharedPointer<CMakeServer>& server) |
| 506 | { |
no test coverage detected