Electroneum
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 1470 of file gmock-matchers.h.

Constructor & Destructor Documentation

◆ NotMatcher()

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

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

1472 : 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 1477 of file gmock-matchers.h.

1477  {
1478  return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1479  }

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