Gets the number of disabled tests.
| 2275 | |
| 2276 | // Gets the number of disabled tests. |
| 2277 | int UnitTestImpl::disabled_test_count() const { |
| 2278 | return SumOverTestSuiteList(test_suites_, &TestSuite::disabled_test_count); |
| 2279 | } |
| 2280 | |
| 2281 | // Gets the number of tests to be printed in the XML report. |
| 2282 | int UnitTestImpl::reportable_test_count() const { |
nothing calls this directly
no test coverage detected