| 2546 | struct ContainsElementMatcher : MatcherBase<std::vector<T>> { |
| 2547 | |
| 2548 | ContainsElementMatcher(T const &comparator) : m_comparator( comparator) {} |
| 2549 | |
| 2550 | bool match(std::vector<T> const &v) const override { |
| 2551 | for (auto const& el : v) { |
nothing calls this directly
no outgoing calls
no test coverage detected