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

#include <gmock-matchers.h>

Public Types

typedef CallableTraits< Callable >::ResultType ResultType
 

Public Member Functions

 ResultOfMatcher (Callable callable, const Matcher< ResultType > &matcher)
 
template<typename T >
 operator Matcher< T > () const
 

Detailed Description

template<typename Callable>
class testing::internal::ResultOfMatcher< Callable >

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

Member Typedef Documentation

◆ ResultType

template<typename Callable >
CallableTraits<Callable>::ResultType testing::internal::ResultOfMatcher< Callable >::ResultType

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

Constructor & Destructor Documentation

◆ ResultOfMatcher()

template<typename Callable >
testing::internal::ResultOfMatcher< Callable >::ResultOfMatcher ( Callable callable,
const Matcher< ResultType > & matcher )
inline

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

2637 : callable_(callable), matcher_(matcher) {
2639 }
Here is the call graph for this function:

Member Function Documentation

◆ operator Matcher< T >()

template<typename Callable >
template<typename T >
testing::internal::ResultOfMatcher< Callable >::operator Matcher< T > ( ) const
inline

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

2642 {
2643 return Matcher<T>(new Impl<T>(callable_, matcher_));
2644 }

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