| 8083 | } |
| 8084 | |
| 8085 | EndsWithMatcher::EndsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "ends with", comparator ) {} |
| 8086 | |
| 8087 | bool EndsWithMatcher::match( std::string const& source ) const { |
| 8088 | return endsWith( m_comparator.adjustString( source ), m_comparator.m_str ); |
nothing calls this directly
no outgoing calls
no test coverage detected