| 2567 | struct ContainsMatcher : MatcherBase<std::vector<T>> { |
| 2568 | |
| 2569 | ContainsMatcher(std::vector<T> const &comparator) : m_comparator( comparator ) {} |
| 2570 | |
| 2571 | bool match(std::vector<T> const &v) const override { |
| 2572 | // !TBD: see note in EqualsMatcher |
nothing calls this directly
no outgoing calls
no test coverage detected