| 217 | } |
| 218 | |
| 219 | unsigned NUnitTest::ITestSuiteProcessor::GoodTestsInCurrentUnit() const noexcept { |
| 220 | return CountTests(CurTestErrors_, true); |
| 221 | } |
| 222 | |
| 223 | unsigned NUnitTest::ITestSuiteProcessor::FailTestsInCurrentUnit() const noexcept { |
| 224 | return CountTests(CurTestErrors_, false); |
nothing calls this directly
no test coverage detected