Gets the number of successful tests.
| 2254 | |
| 2255 | // Gets the number of successful tests. |
| 2256 | int UnitTestImpl::successful_test_count() const { |
| 2257 | return SumOverTestSuiteList(test_suites_, &TestSuite::successful_test_count); |
| 2258 | } |
| 2259 | |
| 2260 | // Gets the number of skipped tests. |
| 2261 | int UnitTestImpl::skipped_test_count() const { |
no test coverage detected