Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::Matcher< std::string > Class Reference

#include <gmock-matchers.h>

Inheritance diagram for testing::Matcher< std::string >:
Collaboration diagram for testing::Matcher< std::string >:

Public Member Functions

 Matcher ()
 
 Matcher (const MatcherInterface< const std::string & > *impl)
 
 Matcher (const MatcherInterface< std::string > *impl)
 
 Matcher (const std::string &s)
 
 Matcher (const char *s)
 
- Public Member Functions inherited from testing::internal::MatcherBase< std::string >
bool MatchAndExplain (GTEST_REFERENCE_TO_CONST_(std::string) x, MatchResultListener *listener) const
 
bool Matches (GTEST_REFERENCE_TO_CONST_(std::string) x) const
 
void DescribeTo (::std::ostream *os) const
 
void DescribeNegationTo (::std::ostream *os) const
 
void ExplainMatchResultTo (GTEST_REFERENCE_TO_CONST_(std::string) x, ::std::ostream *os) const
 
const MatcherDescriberInterfaceGetDescriber () const
 

Additional Inherited Members

- Protected Member Functions inherited from testing::internal::MatcherBase< std::string >
 MatcherBase ()
 
 MatcherBase (const MatcherInterface< GTEST_REFERENCE_TO_CONST_(std::string)> *impl)
 
 MatcherBase (const MatcherInterface< U > *impl, typename internal::EnableIf< !internal::IsSame< U, GTEST_REFERENCE_TO_CONST_(U)>::value >::type *=NULL)
 
virtual ~MatcherBase ()
 

Detailed Description

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

Constructor & Destructor Documentation

◆ Matcher() [1/5]

testing::Matcher< std::string >::Matcher ( )
inline

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

412{}

◆ Matcher() [2/5]

testing::Matcher< std::string >::Matcher ( const MatcherInterface< const std::string & > * impl)
inlineexplicit

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

415 : internal::MatcherBase<std::string>(impl) {}

◆ Matcher() [3/5]

testing::Matcher< std::string >::Matcher ( const MatcherInterface< std::string > * impl)
inlineexplicit

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

417 : internal::MatcherBase<std::string>(impl) {}

◆ Matcher() [4/5]

testing::Matcher< std::string >::Matcher ( const std::string & s)

Definition at line 67 of file gmock-matchers.cc.

67{ *this = Eq(s); }
internal::Eq2Matcher Eq()
char * s
Here is the call graph for this function:

◆ Matcher() [5/5]

testing::Matcher< std::string >::Matcher ( const char * s)

Definition at line 79 of file gmock-matchers.cc.

79{ *this = Eq(std::string(s)); }
Here is the call graph for this function:

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