Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::internal::PairMatcher< FirstMatcher, SecondMatcher > Class Template Reference

#include <gmock-matchers.h>

Public Member Functions

 PairMatcher (FirstMatcher first_matcher, SecondMatcher second_matcher)
 
template<typename PairType >
 operator Matcher< PairType > () const
 

Detailed Description

template<typename FirstMatcher, typename SecondMatcher>
class testing::internal::PairMatcher< FirstMatcher, SecondMatcher >

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

Constructor & Destructor Documentation

◆ PairMatcher()

template<typename FirstMatcher , typename SecondMatcher >
testing::internal::PairMatcher< FirstMatcher, SecondMatcher >::PairMatcher ( FirstMatcher first_matcher,
SecondMatcher second_matcher )
inline

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

3442 : first_matcher_(first_matcher), second_matcher_(second_matcher) {}

Member Function Documentation

◆ operator Matcher< PairType >()

template<typename FirstMatcher , typename SecondMatcher >
template<typename PairType >
testing::internal::PairMatcher< FirstMatcher, SecondMatcher >::operator Matcher< PairType > ( ) const
inline

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

3445 {
3446 return MakeMatcher(
3447 new PairMatcherImpl<PairType>(
3448 first_matcher_, second_matcher_));
3449 }
Matcher< T > MakeMatcher(const MatcherInterface< T > *impl)
Here is the call graph for this function:

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