Gets the number of skipped tests.
| 2259 | |
| 2260 | // Gets the number of skipped tests. |
| 2261 | int UnitTestImpl::skipped_test_count() const { |
| 2262 | return SumOverTestSuiteList(test_suites_, &TestSuite::skipped_test_count); |
| 2263 | } |
| 2264 | |
| 2265 | // Gets the number of failed tests. |
| 2266 | int UnitTestImpl::failed_test_count() const { |
no test coverage detected