Returns true iff the test name of test_info matches name_.
| 4123 | |
| 4124 | // Returns true iff the test name of test_info matches name_. |
| 4125 | bool operator()(const TestInfo * test_info) const { |
| 4126 | return test_info && test_info->name() == name_; |
| 4127 | } |
| 4128 | |
| 4129 | private: |
| 4130 | std::string name_; |
nothing calls this directly
no outgoing calls
no test coverage detected