| 8065 | } |
| 8066 | |
| 8067 | EqualsMatcher::EqualsMatcher( CasedString const& comparator ) : StringMatcherBase( "equals", comparator ) {} |
| 8068 | |
| 8069 | bool EqualsMatcher::match( std::string const& source ) const { |
| 8070 | return m_comparator.adjustString( source ) == m_comparator.m_str; |
nothing calls this directly
no outgoing calls
no test coverage detected