Returns true iff the matcher matches x; also explains the match result to 'listener'.
| 9165 | // Returns true iff the matcher matches x; also explains the match |
| 9166 | // result to 'listener'. |
| 9167 | bool MatchAndExplain(const T& x, MatchResultListener* listener) const { |
| 9168 | return impl_->MatchAndExplain(x, listener); |
| 9169 | } |
| 9170 | |
| 9171 | // Returns true iff this matcher matches x. |
| 9172 | bool Matches(const T& x) const { |
no outgoing calls
no test coverage detected