| 9282 | } |
| 9283 | |
| 9284 | StartsWithMatcher::StartsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "starts with", comparator ) {} |
| 9285 | |
| 9286 | bool StartsWithMatcher::match( std::string const& source ) const { |
| 9287 | return startsWith( m_comparator.adjustString( source ), m_comparator.m_str ); |
nothing calls this directly
no outgoing calls
no test coverage detected