| 209 | } |
| 210 | |
| 211 | unsigned NUnitTest::ITestSuiteProcessor::GoodTests() const noexcept { |
| 212 | return CountTests(TestErrors_, true); |
| 213 | } |
| 214 | |
| 215 | unsigned NUnitTest::ITestSuiteProcessor::FailTests() const noexcept { |
| 216 | return CountTests(TestErrors_, false); |
nothing calls this directly
no test coverage detected