Returns true if this test should run, that is if the test is not disabled (or it is disabled but the also_run_disabled_tests flag has been specified) and its full name matches the user-specified filter. Google Test allows the user to filter the tests by their full names. The full name of a test Bar in test suite Foo is defined as "Foo.Bar". Only the tests that match the filter will run. A filte
| 13195 | // For example, *A*:Foo.* is a filter that matches any string that |
| 13196 | // contains the character 'A' or starts with "Foo.". |
| 13197 | bool should_run() const { return should_run_; } |
| 13198 | |
| 13199 | // Returns true iff this test will appear in the XML report. |
| 13200 | bool is_reportable() const { |
nothing calls this directly
no outgoing calls
no test coverage detected