Returns true iff this test will appear in the XML report.
| 13198 | |
| 13199 | // Returns true iff this test will appear in the XML report. |
| 13200 | bool is_reportable() const { |
| 13201 | // The XML report includes tests matching the filter, excluding those |
| 13202 | // run in other shards. |
| 13203 | return matches_filter_ && !is_in_another_shard_; |
| 13204 | } |
| 13205 | |
| 13206 | // Returns the result of the test. |
| 13207 | const TestResult* result() const { return &result_; } |
nothing calls this directly
no outgoing calls
no test coverage detected