Struct MatcherBase
Synopsis
#include <include/internal/catch_matchers.h>
template<typename T>
struct MatcherBase : MatcherUntypedBase, MatcherMethod<T>
Description
No description yet.
Mentioned in
- Writing tests / Matchers / Custom matchers
- Other / Release Notes / Improvements
Inheritance
Ancestors: MatcherUntypedBase, MatcherMethod
Decsendents: WithinUlpsMatcher, RegexMatcher, PredicateMatcher, ApproxMatcher, WithinAbsMatcher, ExceptionMessageMatcher, ContainsElementMatcher, UnorderedEqualsMatcher, WithinRelMatcher, ContainsMatcher, StringMatcherBase, EqualsMatcher
Methods
operator! | ||
operator&& | ||
operator|| |
Source
Lines 60-67 in include/internal/catch_matchers.h.
template<typename T>
struct MatcherBase : MatcherUntypedBase, MatcherMethod<T> {
MatchAllOf<T> operator && ( MatcherBase const& other ) const;
MatchAnyOf<T> operator || ( MatcherBase const& other ) const;
MatchNotOf<T> operator ! () const;
};