| 9018 | |
| 9019 | |
| 9020 | EndsWithMatcher::EndsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "ends with"_sr, comparator ) {} |
| 9021 | |
| 9022 | bool EndsWithMatcher::match( std::string const& source ) const { |
| 9023 | return endsWith( m_comparator.adjustString( source ), m_comparator.m_str ); |
nothing calls this directly
no outgoing calls
no test coverage detected