| 213 | } |
| 214 | |
| 215 | unsigned NUnitTest::ITestSuiteProcessor::FailTests() const noexcept { |
| 216 | return CountTests(TestErrors_, false); |
| 217 | } |
| 218 | |
| 219 | unsigned NUnitTest::ITestSuiteProcessor::GoodTestsInCurrentUnit() const noexcept { |
| 220 | return CountTests(CurTestErrors_, true); |