Gets the number of failed tests.
| 2264 | |
| 2265 | // Gets the number of failed tests. |
| 2266 | int UnitTestImpl::failed_test_count() const { |
| 2267 | return SumOverTestSuiteList(test_suites_, &TestSuite::failed_test_count); |
| 2268 | } |
| 2269 | |
| 2270 | // Gets the number of disabled tests that will be reported in the XML report. |
| 2271 | int UnitTestImpl::reportable_disabled_test_count() const { |
no test coverage detected