| 80 | } |
| 81 | |
| 82 | void TestTestController::emitTestResult(ITestSuite* suite, TestResult::TestCaseResult caseResult) |
| 83 | { |
| 84 | TestResult result; |
| 85 | result.suiteResult = caseResult; |
| 86 | const auto testCases = suite->cases(); |
| 87 | for (const QString& testCase : testCases) { |
| 88 | result.testCaseResults.insert(testCase, caseResult); |
| 89 | } |
| 90 | |
| 91 | m_testController->notifyTestRunFinished(suite, result); |
| 92 | } |
| 93 | |
| 94 | void TestTestController::initTestCase() |
| 95 | { |
nothing calls this directly
no test coverage detected