| 7855 | } |
| 7856 | |
| 7857 | EqualsMatcher::EqualsMatcher(CasedString const &comparator) : StringMatcherBase("equals", comparator) { |
| 7858 | } |
| 7859 | |
| 7860 | bool EqualsMatcher::match(std::string const &source) const { |
| 7861 | return m_comparator.adjustString(source) == m_comparator.m_str; |
nothing calls this directly
no outgoing calls
no test coverage detected