Searched defs:ContainsElementMatcher (Results 1 – 3 of 3) sorted by relevance
21 struct ContainsElementMatcher : MatcherBase<std::vector<T>> { struct23 ContainsElementMatcher(T const &comparator) : m_comparator( comparator) {} in ContainsElementMatcher() argument25 bool match(std::vector<T> const &v) const override { in match()34 std::string describe() const override { in describe()38 T const& m_comparator;
3603 struct ContainsElementMatcher : MatcherBase<std::vector<T, Alloc>> { struct3605 ContainsElementMatcher(T const &comparator) : m_comparator( comparator) {} in ContainsElementMatcher() argument3607 bool match(std::vector<T, Alloc> const &v) const override { in match()3616 std::string describe() const override { in describe()3620 T const& m_comparator;
3577 struct ContainsElementMatcher : MatcherBase<std::vector<T>> { struct3579 ContainsElementMatcher(T const &comparator) : m_comparator( comparator) {} in ContainsElementMatcher() argument3581 bool match(std::vector<T> const &v) const override { in match()3590 std::string describe() const override { in describe()3594 T const& m_comparator;