Gets the number of tests that should run.
| 2290 | |
| 2291 | // Gets the number of tests that should run. |
| 2292 | int UnitTestImpl::test_to_run_count() const { |
| 2293 | return SumOverTestSuiteList(test_suites_, &TestSuite::test_to_run_count); |
| 2294 | } |
| 2295 | |
| 2296 | // Returns the current OS stack trace as an std::string. |
| 2297 | // |
no test coverage detected