Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::internal::NotMatcher< InnerMatcher > Class Template Reference

#include <gmock-matchers.h>

Public Member Functions

 NotMatcher (InnerMatcher matcher)
 
template<typename T >
 operator Matcher< T > () const
 

Detailed Description

template<typename InnerMatcher>
class testing::internal::NotMatcher< InnerMatcher >

Definition at line 1699 of file gmock-matchers.h.

Constructor & Destructor Documentation

◆ NotMatcher()

template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::NotMatcher ( InnerMatcher matcher)
inlineexplicit

Definition at line 1701 of file gmock-matchers.h.

1701: matcher_(matcher) {}

Member Function Documentation

◆ operator Matcher< T >()

template<typename InnerMatcher >
template<typename T >
testing::internal::NotMatcher< InnerMatcher >::operator Matcher< T > ( ) const
inline

Definition at line 1706 of file gmock-matchers.h.

1706 {
1707 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1708 }
Matcher< T > SafeMatcherCast(const M &polymorphic_matcher)
Here is the call graph for this function:

The documentation for this class was generated from the following file: