| 159 | } |
| 160 | |
| 161 | static size_t CountTests(const TMap<TString, size_t>& testErrors, bool succeeded) { |
| 162 | size_t cnt = 0; |
| 163 | for (const auto& t : testErrors) { |
| 164 | if (succeeded && t.second == 0) { |
| 165 | ++cnt; |
| 166 | } else if (!succeeded && t.second > 0) { |
| 167 | ++cnt; |
| 168 | } |
| 169 | } |
| 170 | return cnt; |
| 171 | } |
| 172 | |
| 173 | NUnitTest::ITestSuiteProcessor::ITestSuiteProcessor() = default; |
| 174 |
no outgoing calls
no test coverage detected