| 9270 | } |
| 9271 | |
| 9272 | EqualsMatcher::EqualsMatcher( CasedString const& comparator ) : StringMatcherBase( "equals", comparator ) {} |
| 9273 | |
| 9274 | bool EqualsMatcher::match( std::string const& source ) const { |
| 9275 | return m_comparator.adjustString( source ) == m_comparator.m_str; |
nothing calls this directly
no outgoing calls
no test coverage detected