| 3358 | MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {} |
| 3359 | |
| 3360 | bool match( ArgT const& arg ) const override { |
| 3361 | return !m_underlyingMatcher.match( arg ); |
| 3362 | } |
| 3363 | |
| 3364 | std::string describe() const override { |
| 3365 | return "not " + m_underlyingMatcher.toString(); |