| 110 | } |
| 111 | |
| 112 | void TestViewPlugin::stopRunningTests() |
| 113 | { |
| 114 | const auto jobs = core()->runController()->currentJobs(); |
| 115 | for (KJob* job : jobs) { |
| 116 | if (job->property("test_job").toBool()) |
| 117 | { |
| 118 | job->kill(); |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | void TestViewPlugin::jobStateChanged() |
| 124 | { |
nothing calls this directly
no test coverage detected