Gets the number of all tests.
| 2285 | |
| 2286 | // Gets the number of all tests. |
| 2287 | int UnitTestImpl::total_test_count() const { |
| 2288 | return SumOverTestSuiteList(test_suites_, &TestSuite::total_test_count); |
| 2289 | } |
| 2290 | |
| 2291 | // Gets the number of tests that should run. |
| 2292 | int UnitTestImpl::test_to_run_count() const { |
no test coverage detected