template <>

class Matcher

Defined at line 515 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-matchers.h

Public Methods

void Matcher ()

Defined at line 519 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-matchers.h

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

Defined at line 521 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-matchers.h

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

Defined at line 523 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-matchers.h

template <typename M, typename = typename std::remove_reference<
                                                M>::type::is_gtest_matcher>
void Matcher (M && m)

Defined at line 528 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-matchers.h

void Matcher (const std::string & s)

Allows the user to write str instead of Eq(str) sometimes, where

str is a string object.

void Matcher (const char * s)

Allows the user to write "foo" instead of Eq("foo") sometimes.