Returns true iff the test is disabled and will be reported in the XML report.
| 13416 | // Returns true iff the test is disabled and will be reported in the XML |
| 13417 | // report. |
| 13418 | static bool TestReportableDisabled(const TestInfo* test_info) { |
| 13419 | return test_info->is_reportable() && test_info->is_disabled_; |
| 13420 | } |
| 13421 | |
| 13422 | // Returns true iff test is disabled. |
| 13423 | static bool TestDisabled(const TestInfo* test_info) { |
nothing calls this directly
no outgoing calls
no test coverage detected