| 2999 | MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {} |
| 3000 | |
| 3001 | bool match( ArgT const& arg ) const override { |
| 3002 | return !m_underlyingMatcher.match( arg ); |
| 3003 | } |
| 3004 | |
| 3005 | std::string describe() const override { |
| 3006 | return "not " + m_underlyingMatcher.toString(); |