| 2979 | MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {} |
| 2980 | |
| 2981 | bool match( ArgT const& arg ) const override { |
| 2982 | return !m_underlyingMatcher.match( arg ); |
| 2983 | } |
| 2984 | |
| 2985 | std::string describe() const override { |
| 2986 | return "not " + m_underlyingMatcher.toString(); |