Gets the number of tests to be printed in the XML report.
| 2280 | |
| 2281 | // Gets the number of tests to be printed in the XML report. |
| 2282 | int UnitTestImpl::reportable_test_count() const { |
| 2283 | return SumOverTestSuiteList(test_suites_, &TestSuite::reportable_test_count); |
| 2284 | } |
| 2285 | |
| 2286 | // Gets the number of all tests. |
| 2287 | int UnitTestImpl::total_test_count() const { |
no test coverage detected