| 7876 | } |
| 7877 | |
| 7878 | EndsWithMatcher::EndsWithMatcher(CasedString const &comparator) : StringMatcherBase("ends with", comparator) { |
| 7879 | } |
| 7880 | |
| 7881 | bool EndsWithMatcher::match(std::string const &source) const { |
| 7882 | return endsWith(m_comparator.adjustString(source), m_comparator.m_str); |
nothing calls this directly
no outgoing calls
no test coverage detected