| 9288 | } |
| 9289 | |
| 9290 | EndsWithMatcher::EndsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "ends with", comparator ) {} |
| 9291 | |
| 9292 | bool EndsWithMatcher::match( std::string const& source ) const { |
| 9293 | return endsWith( m_comparator.adjustString( source ), m_comparator.m_str ); |
nothing calls this directly
no outgoing calls
no test coverage detected