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

#include <gmock-matchers.h>

Public Member Functions

template<typename Iter >
 UnorderedElementsAreArrayMatcher (UnorderedMatcherRequire::Flags match_flags, Iter first, Iter last)
 
template<typename Container >
 operator Matcher< Container > () const
 

Detailed Description

template<typename T>
class testing::internal::UnorderedElementsAreArrayMatcher< T >

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

Constructor & Destructor Documentation

◆ UnorderedElementsAreArrayMatcher()

template<typename T >
template<typename Iter >
testing::internal::UnorderedElementsAreArrayMatcher< T >::UnorderedElementsAreArrayMatcher ( UnorderedMatcherRequire::Flags match_flags,
Iter first,
Iter last )
inline

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

3877 : match_flags_(match_flags), matchers_(first, last) {}

Member Function Documentation

◆ operator Matcher< Container >()

template<typename T >
template<typename Container >
testing::internal::UnorderedElementsAreArrayMatcher< T >::operator Matcher< Container > ( ) const
inline

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

3880 {
3881 return MakeMatcher(new UnorderedElementsAreMatcherImpl<Container>(
3882 match_flags_, matchers_.begin(), matchers_.end()));
3883 }
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: