38 #ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_ 39 #define GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_ 51 #include "gmock/internal/gmock-internal-utils.h" 52 #include "gmock/internal/gmock-port.h" 53 #include "gtest/gtest.h" 55 #if GTEST_HAS_STD_INITIALIZER_LIST_ 56 # include <initializer_list> 80 class MatchResultListener {
126 virtual void DescribeTo(::std::ostream* os)
const = 0;
142 template <
typename T>
195 ::std::stringstream ss_;
203 template <
typename A,
typename B>
207 template <
typename A,
typename B>
211 template <
typename A,
typename B>
215 template <
typename A,
typename B>
219 template <
typename A,
typename B>
223 template <
typename A,
typename B>
251 template <
typename T>
257 return impl_->MatchAndExplain(x, listener);
263 return MatchAndExplain(x, &dummy);
267 void DescribeTo(::std::ostream* os)
const { impl_->DescribeTo(os); }
271 impl_->DescribeNegationTo(os);
277 MatchAndExplain(x, &listener);
318 template <
typename T>
328 : internal::MatcherBase<
T>(impl) {}
345 : internal::MatcherBase<const internal::
string&>(impl) {}
352 Matcher(
const char* s);
362 : internal::MatcherBase<internal::
string>(impl) {}
369 Matcher(
const char* s);
372 #if GTEST_HAS_STRING_PIECE_ 390 Matcher(
const char* s);
393 Matcher(StringPiece s);
410 Matcher(
const char* s);
413 Matcher(StringPiece s);
415 #endif // GTEST_HAS_STRING_PIECE_ 429 template <
class Impl>
440 const Impl&
impl()
const {
return impl_; }
442 template <
typename T>
448 template <
typename T>
454 impl_.DescribeTo(os);
458 impl_.DescribeNegationTo(os);
462 return impl_.MatchAndExplain(x, listener);
483 template <
typename T>
495 template <
class Impl>
514 template <
typename T,
typename M>
515 class MatcherCastImpl {
532 polymorphic_matcher_or_value,
555 return polymorphic_matcher_or_value;
562 template <
typename T,
typename U>
573 : source_matcher_(source_matcher) {}
577 return source_matcher_.MatchAndExplain(static_cast<U>(x), listener);
581 source_matcher_.DescribeTo(os);
585 source_matcher_.DescribeNegationTo(os);
597 template <
typename T>
609 template <
typename T,
typename M>
621 template <
typename T>
626 template <
typename M>
640 template <
typename U>
644 T_must_be_implicitly_convertible_to_U);
649 cannot_convert_non_referentce_arg_to_reference);
657 kTIsOther || kUIsOther ||
659 conversion_of_arithmetic_types_must_be_lossless);
660 return MatcherCast<T>(matcher);
664 template <
typename T,
typename M>
670 template <
typename T>
679 ::std::ostream* os) {
680 if (explanation !=
"" && os != NULL) {
681 *os <<
", " << explanation;
691 return (type_name.length() <= 20 ||
692 type_name.find_first_of(
"<(") == string::npos);
700 template <
typename Value,
typename T>
703 if (!listener->IsInterested()) {
714 const string& type_name = GetTypeName<Value>();
716 *listener->stream() <<
" (of type " << type_name <<
")";
731 template <
typename MatcherTuple,
typename ValueTuple>
733 const ValueTuple& value_tuple) {
735 &&
get<N - 1>(matcher_tuple).
Matches(get<N - 1>(value_tuple));
742 template <
typename MatcherTuple,
typename ValueTuple>
745 ::std::ostream* os) {
752 get<N - 1>(matchers);
753 typedef typename tuple_element<N - 1, ValueTuple>
::type Value;
754 Value value =
get<N - 1>(
values);
756 if (!matcher.MatchAndExplain(value, &listener)) {
759 *os <<
" Expected arg #" << N - 1 <<
": ";
760 get<N - 1>(matchers).DescribeTo(os);
761 *os <<
"\n Actual: ";
778 template <
typename MatcherTuple,
typename ValueTuple>
780 const ValueTuple& ) {
784 template <
typename MatcherTuple,
typename ValueTuple>
795 template <
typename MatcherTuple,
typename ValueTuple>
797 const ValueTuple& value_tuple) {
802 matcher_and_value_have_different_numbers_of_fields);
804 Matches(matcher_tuple, value_tuple);
809 template <
typename MatcherTuple,
typename ValueTuple>
812 ::std::ostream* os) {
814 matchers, values, os);
821 template <
typename Tuple,
typename Func,
typename OutIter>
829 static OutIter
Run(
Func f,
const Tuple&
t, OutIter out) {
834 template <
typename Tup,
size_t kRemainingSize>
836 OutIter operator() (
Func f,
const Tup&
t, OutIter out)
const {
837 *out++ =
f(::testing::get<TupleSize::value - kRemainingSize>(t));
841 template <
typename Tup>
843 OutIter operator() (
Func ,
const Tup& , OutIter out)
const {
852 template <
typename Tuple,
typename Func,
typename OutIter>
858 template <
typename T>
863 virtual void DescribeTo(::std::ostream* os)
const { *os <<
"is anything"; }
868 *os <<
"never matches";
878 template <
typename T>
892 template <
typename D,
typename Rhs,
typename Op>
896 template <
typename Lhs>
902 template <
typename Lhs>
908 return Op()(lhs, rhs_);
911 *os << D::Desc() <<
" ";
915 *os << D::NegatedDesc() <<
" ";
926 template <
typename Rhs>
931 static const char*
Desc() {
return "is equal to"; }
934 template <
typename Rhs>
939 static const char*
Desc() {
return "isn't equal to"; }
942 template <
typename Rhs>
947 static const char*
Desc() {
return "is <"; }
950 template <
typename Rhs>
955 static const char*
Desc() {
return "is >"; }
958 template <
typename Rhs>
963 static const char*
Desc() {
return "is <="; }
966 template <
typename Rhs>
971 static const char*
Desc() {
return "is >="; }
979 template <
typename Po
inter>
984 #else // GTEST_LANG_CXX11 986 #endif // GTEST_LANG_CXX11 989 void DescribeTo(::std::ostream* os)
const { *os <<
"is NULL"; }
999 template <
typename Po
inter>
1002 #if GTEST_LANG_CXX11 1003 return p !=
nullptr;
1004 #else // GTEST_LANG_CXX11 1006 #endif // GTEST_LANG_CXX11 1009 void DescribeTo(::std::ostream* os)
const { *os <<
"isn't NULL"; }
1028 template <
typename T>
1031 template <
typename T>
1044 template <
typename Super>
1055 template <
typename Super>
1064 *listener <<
"which is located @" <<
static_cast<const void*
>(&
x);
1065 return &x == &object_;
1069 *os <<
"references the variable ";
1074 *os <<
"does not reference the variable ";
1079 const Super& object_;
1095 const wchar_t* rhs) {
1096 return String::CaseInsensitiveWideCStringEquals(lhs, rhs);
1101 template <
typename StringType>
1103 const StringType& s2) {
1110 const typename StringType::value_type nul = 0;
1111 const size_t i1 = s1.find(nul), i2 = s2.find(nul);
1114 if (i1 == StringType::npos || i2 == StringType::npos) {
1125 template <
typename StringType>
1129 bool case_sensitive)
1130 : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
1137 template <
typename CharType>
1142 return MatchAndExplain(StringType(s), listener);
1149 template <
typename MatcheeStringType>
1152 const StringType& s2(s);
1153 const bool eq = case_sensitive_ ? s2 == string_ :
1155 return expect_eq_ == eq;
1159 DescribeToHelper(expect_eq_, os);
1163 DescribeToHelper(!expect_eq_, os);
1168 *os << (expect_eq ?
"is " :
"isn't ");
1170 if (!case_sensitive_) {
1171 *os <<
"(ignoring case) ";
1176 const StringType string_;
1177 const bool expect_eq_;
1178 const bool case_sensitive_;
1186 template <
typename StringType>
1190 : substring_(substring) {}
1197 template <
typename CharType>
1199 return s != NULL && MatchAndExplain(StringType(s), listener);
1206 template <
typename MatcheeStringType>
1209 const StringType& s2(s);
1210 return s2.find(substring_) != StringType::npos;
1215 *os <<
"has substring ";
1220 *os <<
"has no substring ";
1225 const StringType substring_;
1233 template <
typename StringType>
1244 template <
typename CharType>
1246 return s != NULL && MatchAndExplain(StringType(s), listener);
1253 template <
typename MatcheeStringType>
1256 const StringType& s2(s);
1257 return s2.length() >=
prefix_.length() &&
1262 *os <<
"starts with ";
1267 *os <<
"doesn't start with ";
1280 template <
typename StringType>
1290 template <
typename CharType>
1292 return s != NULL && MatchAndExplain(StringType(s), listener);
1299 template <
typename MatcheeStringType>
1302 const StringType& s2(s);
1303 return s2.length() >= suffix_.length() &&
1304 s2.substr(s2.length() - suffix_.length()) == suffix_;
1308 *os <<
"ends with ";
1313 *os <<
"doesn't end with ";
1318 const StringType suffix_;
1329 :
regex_(regex), full_match_(full_match) {}
1336 template <
typename CharType>
1345 template <
class MatcheeStringType>
1349 return full_match_ ? RE::FullMatch(s2, *
regex_) :
1350 RE::PartialMatch(s2, *
regex_);
1354 *os << (full_match_ ?
"matches" :
"contains")
1355 <<
" regular expression ";
1360 *os <<
"doesn't " << (full_match_ ?
"match" :
"contain")
1361 <<
" regular expression ";
1367 const bool full_match_;
1380 template <
typename D,
typename Op>
1383 template <
typename T1,
typename T2>
1385 return MakeMatcher(
new Impl< ::testing::tuple<T1, T2> >);
1387 template <
typename T1,
typename T2>
1389 return MakeMatcher(
new Impl<const ::testing::tuple<T1, T2>&>);
1393 static ::std::ostream&
GetDesc(::std::ostream& os) {
1394 return os << D::Desc();
1397 template <
typename Tuple>
1403 return Op()(::testing::get<0>(args), ::testing::get<1>(args));
1406 *os <<
"are " << GetDesc;
1409 *os <<
"aren't " << GetDesc;
1416 static const char*
Desc() {
return "an equal pair"; }
1420 static const char*
Desc() {
return "an unequal pair"; }
1424 static const char*
Desc() {
return "a pair where the first < the second"; }
1428 static const char*
Desc() {
return "a pair where the first > the second"; }
1432 static const char*
Desc() {
return "a pair where the first <= the second"; }
1436 static const char*
Desc() {
return "a pair where the first >= the second"; }
1443 template <
typename T>
1447 : matcher_(matcher) {}
1450 return !matcher_.MatchAndExplain(x, listener);
1454 matcher_.DescribeNegationTo(os);
1458 matcher_.DescribeTo(os);
1469 template <
typename InnerMatcher>
1476 template <
typename T>
1482 InnerMatcher matcher_;
1491 template <
typename T>
1495 : matcher1_(matcher1), matcher2_(matcher2) {}
1499 matcher1_.DescribeTo(os);
1501 matcher2_.DescribeTo(os);
1507 matcher1_.DescribeNegationTo(os);
1509 matcher2_.DescribeNegationTo(os);
1517 if (!matcher1_.MatchAndExplain(x, &listener1)) {
1518 *listener << listener1.
str();
1523 if (!matcher2_.MatchAndExplain(x, &listener2)) {
1524 *listener << listener2.
str();
1537 *listener <<
", and " << s2;
1550 #if GTEST_LANG_CXX11 1558 template <
int kSize,
typename Head,
typename... Tail>
1559 struct MatcherList {
1560 typedef MatcherList<kSize - 1, Tail...> MatcherListTail;
1561 typedef ::std::pair<Head, typename MatcherListTail::ListType> ListType;
1567 static ListType BuildList(
const Head& matcher,
const Tail&... tail) {
1568 return ListType(matcher, MatcherListTail::BuildList(tail...));
1575 template <
typename T,
template <
typename >
class CombiningMatcher>
1576 static Matcher<T> CreateMatcher(const ListType& matchers) {
1578 SafeMatcherCast<T>(matchers.first),
1579 MatcherListTail::template CreateMatcher<T, CombiningMatcher>(
1586 template <
typename Matcher1,
typename Matcher2>
1587 struct MatcherList<2, Matcher1, Matcher2> {
1588 typedef ::std::pair<Matcher1, Matcher2> ListType;
1590 static ListType BuildList(
const Matcher1& matcher1,
1591 const Matcher2& matcher2) {
1592 return ::std::pair<Matcher1, Matcher2>(matcher1, matcher2);
1595 template <
typename T,
template <
typename >
class CombiningMatcher>
1596 static Matcher<T> CreateMatcher(const ListType& matchers) {
1598 SafeMatcherCast<T>(matchers.first),
1599 SafeMatcherCast<T>(matchers.second)));
1607 template <
template <
typename T>
class CombiningMatcher,
typename...
Args>
1608 class VariadicMatcher {
1610 VariadicMatcher(
const Args&... matchers)
1611 : matchers_(MatcherListType::BuildList(matchers...)) {}
1616 template <
typename T>
1618 return MatcherListType::template CreateMatcher<T, CombiningMatcher>(
1623 typedef MatcherList<
sizeof...(Args),
Args...> MatcherListType;
1625 const typename MatcherListType::ListType matchers_;
1630 template <
typename...
Args>
1633 #endif // GTEST_LANG_CXX11 1637 template <
typename Matcher1,
typename Matcher2>
1641 : matcher1_(matcher1), matcher2_(matcher2) {}
1646 template <
typename T>
1649 SafeMatcherCast<T>(matcher2_)));
1663 template <
typename T>
1667 : matcher1_(matcher1), matcher2_(matcher2) {}
1671 matcher1_.DescribeTo(os);
1673 matcher2_.DescribeTo(os);
1679 matcher1_.DescribeNegationTo(os);
1681 matcher2_.DescribeNegationTo(os);
1689 if (matcher1_.MatchAndExplain(x, &listener1)) {
1690 *listener << listener1.
str();
1695 if (matcher2_.MatchAndExplain(x, &listener2)) {
1696 *listener << listener2.
str();
1709 *listener <<
", and " << s2;
1722 #if GTEST_LANG_CXX11 1724 template <
typename...
Args>
1727 #endif // GTEST_LANG_CXX11 1732 template <
typename Matcher1,
typename Matcher2>
1736 : matcher1_(matcher1), matcher2_(matcher2) {}
1741 template <
typename T>
1744 SafeMatcherCast<T>(matcher1_), SafeMatcherCast<T>(matcher2_)));
1756 template <
typename Predicate>
1765 template <
typename T>
1780 *os <<
"satisfies the given predicate";
1784 *os <<
"doesn't satisfy the given predicate";
1788 Predicate predicate_;
1795 template <
typename M>
1806 template <
typename T>
1822 return MatcherCast<const T&>(matcher_).
Matches(x);
1833 template <
typename M>
1841 template <
typename T>
1859 ::std::stringstream ss;
1860 ss <<
"Value of: " << value_text <<
"\n" 1863 ss <<
"\n Actual: " << listener.str();
1877 template <
typename M>
1887 template <
typename FloatType>
1897 expected_(expected), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) {
1904 FloatType max_abs_error)
1905 : expected_(expected),
1906 nan_eq_nan_(nan_eq_nan),
1907 max_abs_error_(max_abs_error) {
1909 <<
", where max_abs_error is" << max_abs_error;
1913 template <
typename T>
1916 Impl(FloatType expected,
bool nan_eq_nan, FloatType max_abs_error)
1917 : expected_(expected),
1918 nan_eq_nan_(nan_eq_nan),
1919 max_abs_error_(max_abs_error) {}
1926 if (actual.is_nan() || expected.
is_nan()) {
1927 if (actual.is_nan() && expected.
is_nan()) {
1933 if (HasMaxAbsError()) {
1938 if (value == expected_) {
1942 const FloatType
diff = value - expected_;
1943 if (fabs(diff) <= max_abs_error_) {
1947 if (listener->IsInterested()) {
1948 *listener <<
"which is " << diff <<
" from " << expected_;
1952 return actual.AlmostEquals(expected);
1960 const ::std::streamsize old_precision = os->precision(
1966 *os <<
"never matches";
1969 *os <<
"is approximately " << expected_;
1970 if (HasMaxAbsError()) {
1971 *os <<
" (absolute error <= " << max_abs_error_ <<
")";
1974 os->precision(old_precision);
1979 const ::std::streamsize old_precision = os->precision(
1985 *os <<
"is anything";
1988 *os <<
"isn't approximately " << expected_;
1989 if (HasMaxAbsError()) {
1990 *os <<
" (absolute error > " << max_abs_error_ <<
")";
1994 os->precision(old_precision);
1999 return max_abs_error_ >= 0;
2002 const FloatType expected_;
2003 const bool nan_eq_nan_;
2005 const FloatType max_abs_error_;
2032 const FloatType expected_;
2033 const bool nan_eq_nan_;
2035 const FloatType max_abs_error_;
2042 template <
typename InnerMatcher>
2055 template <
typename Po
inter>
2062 template <
typename Po
inter>
2068 explicit Impl(
const InnerMatcher& matcher)
2069 : matcher_(
MatcherCast<const Pointee&>(matcher)) {}
2072 *os <<
"points to a value that ";
2073 matcher_.DescribeTo(os);
2077 *os <<
"does not point to a value that ";
2078 matcher_.DescribeTo(os);
2086 *listener <<
"which points to ";
2096 const InnerMatcher matcher_;
2107 template <
typename To>
2111 : matcher_(matcher) {}
2114 GetCastTypeDescription(os);
2115 matcher_.DescribeTo(os);
2119 GetCastTypeDescription(os);
2120 matcher_.DescribeNegationTo(os);
2128 return GetTypeName<To>();
2129 #else // GTEST_HAS_RTTI 2130 return "the target type";
2131 #endif // GTEST_HAS_RTTI 2136 *os <<
"when dynamic_cast to " << GetToName() <<
", ";
2144 template <
typename To>
2150 template <
typename From>
2160 template <
typename To>
2166 template <
typename From>
2169 To*
to =
dynamic_cast<To*
>(&
from);
2171 *listener <<
"which cannot be dynamic_cast to " << this->GetToName();
2180 template <
typename Class,
typename FieldType>
2185 : field_(field), matcher_(matcher) {}
2188 *os <<
"is an object whose given field ";
2189 matcher_.DescribeTo(os);
2193 *os <<
"is an object whose given field ";
2194 matcher_.DescribeNegationTo(os);
2197 template <
typename T>
2199 return MatchAndExplainImpl(
2200 typename ::testing::internal::
2211 *listener <<
"whose given field is ";
2220 *listener <<
"which points to an object ";
2224 return MatchAndExplainImpl(
false_type(), *p, listener);
2227 const FieldType Class::*field_;
2235 template <
typename Class,
typename PropertyType>
2246 : property_(property), matcher_(matcher) {}
2249 *os <<
"is an object whose given property ";
2250 matcher_.DescribeTo(os);
2254 *os <<
"is an object whose given property ";
2255 matcher_.DescribeNegationTo(os);
2258 template <
typename T>
2260 return MatchAndExplainImpl(
2261 typename ::testing::internal::
2272 *listener <<
"whose given property is ";
2275 #if defined(_PREFAST_ ) && _MSC_VER == 1800 2281 RefToConstProperty result = (obj.*property_)();
2291 *listener <<
"which points to an object ";
2295 return MatchAndExplainImpl(
false_type(), *p, listener);
2298 PropertyType (Class::*property_)()
const;
2308 template <
typename Functor>
2314 template <
typename T>
2315 static ResultType
Invoke(Functor f, T arg) {
return f(arg); }
2319 template <
typename ArgType,
typename ResType>
2326 <<
"NULL function pointer is passed into ResultOf().";
2328 template <
typename T>
2329 static ResType
Invoke(ResType(*f)(ArgType), T arg) {
2336 template <
typename Callable>
2342 : callable_(callable), matcher_(matcher) {
2346 template <
typename T>
2354 template <
typename T>
2358 : callable_(callable), matcher_(matcher) {}
2361 *os <<
"is mapped by the given callable to a value that ";
2362 matcher_.DescribeTo(os);
2366 *os <<
"is mapped by the given callable to a value that ";
2367 matcher_.DescribeNegationTo(os);
2371 *listener <<
"which is mapped by the given callable to ";
2385 mutable CallableStorageType callable_;
2391 const CallableStorageType callable_;
2398 template <
typename SizeMatcher>
2402 : size_matcher_(size_matcher) {
2405 template <
typename Container>
2410 template <
typename Container>
2415 typedef typename ContainerView::type::size_type
SizeType;
2416 explicit Impl(
const SizeMatcher& size_matcher)
2417 : size_matcher_(
MatcherCast<SizeType>(size_matcher)) {}
2421 size_matcher_.DescribeTo(os);
2425 size_matcher_.DescribeNegationTo(os);
2430 SizeType
size = container.size();
2432 const bool result = size_matcher_.MatchAndExplain(size, &size_listener);
2434 <<
"whose size " << size << (result ?
" matches" :
" doesn't match");
2445 const SizeMatcher size_matcher_;
2451 template <
typename DistanceMatcher>
2455 : distance_matcher_(distance_matcher) {}
2457 template <
typename Container>
2462 template <
typename Container>
2467 typedef typename std::iterator_traits<
2468 typename ContainerView::type::const_iterator>::difference_type
2470 explicit Impl(
const DistanceMatcher& distance_matcher)
2474 *os <<
"distance between begin() and end() ";
2475 distance_matcher_.DescribeTo(os);
2478 *os <<
"distance between begin() and end() ";
2479 distance_matcher_.DescribeNegationTo(os);
2484 #if GTEST_HAS_STD_BEGIN_AND_END_ 2489 DistanceType distance = std::distance(container.begin(), container.end());
2493 distance_matcher_.MatchAndExplain(distance, &distance_listener);
2494 *listener <<
"whose distance between begin() and end() " << distance
2495 << (result ?
" matches" :
" doesn't match");
2506 const DistanceMatcher distance_matcher_;
2520 template <
typename Container>
2530 : expected_(View::Copy(expected)) {
2542 *os <<
"does not equal ";
2546 template <
typename LhsContainer>
2554 StlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
2555 if (lhs_stl_container == expected_)
2558 ::std::ostream*
const os = listener->stream();
2561 bool printed_header =
false;
2562 for (
typename LhsStlContainer::const_iterator it =
2563 lhs_stl_container.begin();
2564 it != lhs_stl_container.end(); ++it) {
2567 if (printed_header) {
2570 *os <<
"which has these unexpected elements: ";
2571 printed_header =
true;
2578 bool printed_header2 =
false;
2579 for (
typename StlContainer::const_iterator it = expected_.begin();
2580 it != expected_.end(); ++it) {
2582 lhs_stl_container.begin(), lhs_stl_container.end(), *it) ==
2583 lhs_stl_container.end()) {
2584 if (printed_header2) {
2587 *os << (printed_header ?
",\nand" :
"which")
2588 <<
" doesn't have these expected elements: ";
2589 printed_header2 =
true;
2600 const StlContainer expected_;
2607 template <
typename T,
typename U>
2612 template <
typename Comparator,
typename ContainerMatcher>
2616 const ContainerMatcher& matcher)
2617 : comparator_(comparator), matcher_(matcher) {}
2619 template <
typename LhsContainer>
2624 template <
typename LhsContainer>
2637 : comparator_(comparator), matcher_(matcher) {}
2640 *os <<
"(when sorted) ";
2641 matcher_.DescribeTo(os);
2645 *os <<
"(when sorted) ";
2646 matcher_.DescribeNegationTo(os);
2651 LhsStlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
2652 ::std::vector<LhsValue> sorted_container(lhs_stl_container.begin(),
2653 lhs_stl_container.end());
2655 sorted_container.begin(), sorted_container.end(), comparator_);
2657 if (!listener->IsInterested()) {
2660 return matcher_.Matches(sorted_container);
2663 *listener <<
"which is ";
2665 *listener <<
" when sorted";
2668 const bool match = matcher_.MatchAndExplain(sorted_container,
2675 const Comparator comparator_;
2682 const Comparator comparator_;
2683 const ContainerMatcher matcher_;
2692 template <
typename TupleMatcher,
typename RhsContainer>
2702 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {
2709 template <
typename LhsContainer>
2714 template <
typename LhsContainer>
2728 Impl(
const TupleMatcher& tuple_matcher,
const RhsStlContainer& rhs)
2730 : mono_tuple_matcher_(
SafeMatcherCast<InnerMatcherArg>(tuple_matcher)),
2734 *os <<
"contains " << rhs_.size()
2735 <<
" values, where each value and its corresponding value in ";
2738 mono_tuple_matcher_.DescribeTo(os);
2741 *os <<
"doesn't contain exactly " << rhs_.size()
2742 <<
" values, or contains a value x at some index i" 2743 <<
" where x and the i-th value of ";
2746 mono_tuple_matcher_.DescribeNegationTo(os);
2751 LhsStlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
2752 const size_t actual_size = lhs_stl_container.size();
2753 if (actual_size != rhs_.size()) {
2754 *listener <<
"which contains " << actual_size <<
" values";
2758 typename LhsStlContainer::const_iterator left = lhs_stl_container.begin();
2759 typename RhsStlContainer::const_iterator right = rhs_.begin();
2760 for (
size_t i = 0;
i != actual_size; ++
i, ++left, ++right) {
2761 const InnerMatcherArg value_pair(*left, *right);
2763 if (listener->IsInterested()) {
2765 if (!mono_tuple_matcher_.MatchAndExplain(
2766 value_pair, &inner_listener)) {
2767 *listener <<
"where the value pair (";
2771 *listener <<
") at index #" <<
i <<
" don't match";
2776 if (!mono_tuple_matcher_.Matches(value_pair))
2786 const RhsStlContainer rhs_;
2792 const TupleMatcher tuple_matcher_;
2793 const RhsStlContainer rhs_;
2799 template <
typename Container>
2806 typedef typename StlContainer::value_type
Element;
2808 template <
typename InnerMatcher>
2817 Container container,
2819 StlContainerReference stl_container = View::ConstReference(container);
2821 for (
typename StlContainer::const_iterator it = stl_container.begin();
2822 it != stl_container.end(); ++it, ++
i) {
2824 const bool matches = inner_matcher_.MatchAndExplain(*it, &inner_listener);
2826 if (matches != all_elements_should_match) {
2827 *listener <<
"whose element #" << i
2828 << (matches ?
" matches" :
" doesn't match");
2830 return !all_elements_should_match;
2833 return all_elements_should_match;
2844 template <
typename Container>
2847 template <
typename InnerMatcher>
2853 *os <<
"contains at least one element that ";
2854 this->inner_matcher_.DescribeTo(os);
2858 *os <<
"doesn't contain any element that ";
2859 this->inner_matcher_.DescribeTo(os);
2864 return this->MatchAndExplainImpl(
false, container, listener);
2873 template <
typename Container>
2876 template <
typename InnerMatcher>
2882 *os <<
"only contains elements that ";
2883 this->inner_matcher_.DescribeTo(os);
2887 *os <<
"contains some element that ";
2888 this->inner_matcher_.DescribeNegationTo(os);
2893 return this->MatchAndExplainImpl(
true, container, listener);
2901 template <
typename M>
2906 template <
typename Container>
2912 const M inner_matcher_;
2918 template <
typename M>
2923 template <
typename Container>
2929 const M inner_matcher_;
2938 template <
typename PairType>
2944 template <
typename InnerMatcher>
2954 const bool match = inner_matcher_.MatchAndExplain(key_value.first,
2957 if (explanation !=
"") {
2958 *listener <<
"whose first field is a value " << explanation;
2965 *os <<
"has a key that ";
2966 inner_matcher_.DescribeTo(os);
2971 *os <<
"doesn't have a key that ";
2972 inner_matcher_.DescribeTo(os);
2982 template <
typename M>
2987 template <
typename PairType>
2993 const M matcher_for_key_;
3000 template <
typename PairType>
3007 template <
typename FirstMatcher,
typename SecondMatcher>
3017 *os <<
"has a first field that ";
3018 first_matcher_.DescribeTo(os);
3019 *os <<
", and has a second field that ";
3020 second_matcher_.DescribeTo(os);
3025 *os <<
"has a first field that ";
3026 first_matcher_.DescribeNegationTo(os);
3027 *os <<
", or has a second field that ";
3028 second_matcher_.DescribeNegationTo(os);
3035 if (!listener->IsInterested()) {
3038 return first_matcher_.Matches(a_pair.first) &&
3039 second_matcher_.Matches(a_pair.second);
3042 if (!first_matcher_.MatchAndExplain(a_pair.first,
3043 &first_inner_listener)) {
3044 *listener <<
"whose first field does not match";
3049 if (!second_matcher_.MatchAndExplain(a_pair.second,
3050 &second_inner_listener)) {
3051 *listener <<
"whose second field does not match";
3055 ExplainSuccess(first_inner_listener.
str(), second_inner_listener.
str(),
3064 *listener <<
"whose both fields match";
3065 if (first_explanation !=
"") {
3066 *listener <<
", where the first field is a value " << first_explanation;
3068 if (second_explanation !=
"") {
3070 if (first_explanation !=
"") {
3071 *listener <<
"and ";
3073 *listener <<
"where ";
3075 *listener <<
"the second field is a value " << second_explanation;
3086 template <
typename FirstMatcher,
typename SecondMatcher>
3090 : first_matcher_(first_matcher), second_matcher_(second_matcher) {}
3092 template <
typename PairType>
3096 first_matcher_, second_matcher_));
3100 const FirstMatcher first_matcher_;
3101 const SecondMatcher second_matcher_;
3107 template <
typename Container>
3114 typedef typename StlContainer::value_type
Element;
3118 template <
typename InputIter>
3120 while (first != last) {
3121 matchers_.push_back(MatcherCast<const Element&>(*first++));
3129 }
else if (
count() == 1) {
3130 *os <<
"has 1 element that ";
3131 matchers_[0].DescribeTo(os);
3133 *os <<
"has " << Elements(
count()) <<
" where\n";
3134 for (
size_t i = 0;
i !=
count(); ++
i) {
3135 *os <<
"element #" <<
i <<
" ";
3136 matchers_[
i].DescribeTo(os);
3137 if (i + 1 <
count()) {
3147 *os <<
"isn't empty";
3151 *os <<
"doesn't have " << Elements(
count()) <<
", or\n";
3152 for (
size_t i = 0;
i !=
count(); ++
i) {
3153 *os <<
"element #" <<
i <<
" ";
3154 matchers_[
i].DescribeNegationTo(os);
3155 if (i + 1 <
count()) {
3166 const bool listener_interested = listener->IsInterested();
3169 ::std::vector<internal::string> explanations(
count());
3170 StlContainerReference stl_container = View::ConstReference(container);
3171 typename StlContainer::const_iterator it = stl_container.begin();
3172 size_t exam_pos = 0;
3173 bool mismatch_found =
false;
3178 for (; it != stl_container.end() && exam_pos !=
count(); ++it, ++exam_pos) {
3180 if (listener_interested) {
3182 match = matchers_[exam_pos].MatchAndExplain(*it, &s);
3183 explanations[exam_pos] = s.
str();
3185 match = matchers_[exam_pos].Matches(*it);
3189 mismatch_found =
true;
3198 size_t actual_count = exam_pos;
3199 for (; it != stl_container.end(); ++it) {
3203 if (actual_count !=
count()) {
3208 if (listener_interested && (actual_count != 0)) {
3209 *listener <<
"which has " << Elements(actual_count);
3214 if (mismatch_found) {
3216 if (listener_interested) {
3217 *listener <<
"whose element #" << exam_pos <<
" doesn't match";
3225 if (listener_interested) {
3226 bool reason_printed =
false;
3227 for (
size_t i = 0;
i !=
count(); ++
i) {
3230 if (reason_printed) {
3231 *listener <<
",\nand ";
3233 *listener <<
"whose element #" <<
i <<
" matches, " <<
s;
3234 reason_printed =
true;
3243 return Message() << count << (count == 1 ?
" element" :
" elements");
3246 size_t count()
const {
return matchers_.size(); }
3248 ::std::vector<Matcher<const Element&> > matchers_;
3260 : num_elements_(num_elements),
3261 num_matchers_(num_matchers),
3262 matched_(num_elements_* num_matchers_, 0) {
3268 return matched_[SpaceIndex(ilhs, irhs)] == 1;
3271 matched_[SpaceIndex(ilhs, irhs)] = b ? 1 : 0;
3281 string DebugString()
const;
3285 return ilhs * num_matchers_ + irhs;
3288 size_t num_elements_;
3289 size_t num_matchers_;
3294 ::std::vector<char> matched_;
3311 class GTEST_API_ UnorderedElementsAreMatcherImplBase {
3319 void DescribeToImpl(::std::ostream* os)
const;
3322 void DescribeNegationToImpl(::std::ostream* os)
const;
3324 bool VerifyAllElementsAndMatchersAreMatched(
3325 const ::std::vector<string>& element_printouts,
3326 const MatchMatrix& matrix,
3330 return matcher_describers_;
3334 return Message() << n <<
" element" << (n == 1 ?
"" :
"s");
3338 MatcherDescriberVec matcher_describers_;
3344 template <
typename Container>
3347 public UnorderedElementsAreMatcherImplBase {
3354 typedef typename StlContainer::value_type
Element;
3358 template <
typename InputIter>
3360 for (; first != last; ++
first) {
3361 matchers_.push_back(MatcherCast<const Element&>(*first));
3362 matcher_describers().push_back(matchers_.back().GetDescriber());
3368 return UnorderedElementsAreMatcherImplBase::DescribeToImpl(os);
3373 return UnorderedElementsAreMatcherImplBase::DescribeNegationToImpl(os);
3378 StlContainerReference stl_container = View::ConstReference(container);
3379 ::std::vector<string> element_printouts;
3380 MatchMatrix matrix = AnalyzeElements(stl_container.begin(),
3381 stl_container.end(),
3385 const size_t actual_count = matrix.
LhsSize();
3386 if (actual_count == 0 && matchers_.empty()) {
3389 if (actual_count != matchers_.size()) {
3394 if (actual_count != 0 && listener->IsInterested()) {
3395 *listener <<
"which has " << Elements(actual_count);
3400 return VerifyAllElementsAndMatchersAreMatched(element_printouts,
3401 matrix, listener) &&
3408 template <
typename ElementIter>
3410 ::std::vector<string>* element_printouts,
3412 element_printouts->clear();
3413 ::std::vector<char> did_match;
3414 size_t num_elements = 0;
3415 for (; elem_first != elem_last; ++num_elements, ++elem_first) {
3416 if (listener->IsInterested()) {
3419 for (
size_t irhs = 0; irhs != matchers_.size(); ++irhs) {
3420 did_match.push_back(
Matches(matchers_[irhs])(*elem_first));
3424 MatchMatrix matrix(num_elements, matchers_.size());
3425 ::std::vector<char>::const_iterator did_match_iter = did_match.begin();
3426 for (
size_t ilhs = 0; ilhs != num_elements; ++ilhs) {
3427 for (
size_t irhs = 0; irhs != matchers_.size(); ++irhs) {
3428 matrix.
SetEdge(ilhs, irhs, *did_match_iter++ != 0);
3434 MatcherVec matchers_;
3441 template <
typename Target>
3443 template <
typename Arg>
3445 return MatcherCast<Target>(
a);
3450 template <
typename MatcherTuple>
3454 : matchers_(args) {}
3456 template <
typename Container>
3460 typedef typename View::value_type Element;
3461 typedef ::std::vector<Matcher<const Element&> > MatcherVec;
3462 MatcherVec matchers;
3465 ::std::back_inserter(matchers));
3467 matchers.begin(), matchers.end()));
3476 template <
typename MatcherTuple>
3481 template <
typename Container>
3485 typedef typename View::value_type Element;
3486 typedef ::std::vector<Matcher<const Element&> > MatcherVec;
3487 MatcherVec matchers;
3490 ::std::back_inserter(matchers));
3492 matchers.begin(), matchers.end()));
3501 template <
typename T>
3506 template <
typename Iter>
3508 : matchers_(first, last) {}
3510 template <
typename Container>
3518 ::std::vector<T> matchers_;
3524 template <
typename T>
3527 template <
typename Iter>
3530 template <
typename Container>
3533 matchers_.begin(), matchers_.end()));
3537 const ::std::vector<T> matchers_;
3551 template <
typename Tuple2Matcher,
typename Second>
3555 : tuple2_matcher_(tm), second_value_(second) {}
3557 template <
typename T>
3571 GTEST_LOG_(FATAL) <<
"BoundSecondMatcher should never be assigned.";
3575 template <
typename T>
3580 Impl(
const Tuple2Matcher& tm,
const Second& second)
3582 second_value_(second) {}
3588 mono_tuple2_matcher_.DescribeTo(os);
3592 return mono_tuple2_matcher_.MatchAndExplain(ArgTuple(x, second_value_),
3598 const Second second_value_;
3603 const Tuple2Matcher tuple2_matcher_;
3604 const Second second_value_;
3611 template <
typename Tuple2Matcher,
typename Second>
3613 const Tuple2Matcher& tm,
const Second& second) {
3623 const char* matcher_name,
3643 template <
typename Iter>
3645 typename ::std::iterator_traits<Iter>::value_type>
3647 typedef typename ::std::iterator_traits<Iter>::value_type
T;
3651 template <
typename T>
3653 const T* pointer,
size_t count) {
3657 template <
typename T,
size_t N>
3659 const T (&array)[N]) {
3663 template <
typename Container>
3669 #if GTEST_HAS_STD_INITIALIZER_LIST_ 3670 template <
typename T>
3685 template <
typename Iter>
3687 typename ::std::iterator_traits<Iter>::value_type>
3689 typedef typename ::std::iterator_traits<Iter>::value_type
T;
3693 template <
typename T>
3699 template <
typename T,
size_t N>
3705 template <
typename Container>
3707 typename Container::value_type>
3712 #if GTEST_HAS_STD_INITIALIZER_LIST_ 3713 template <
typename T>
3731 template <
typename T>
3735 template <
typename T>
3741 template <
typename T>
3746 template <
typename T>
3761 template <
typename Lhs,
typename Rhs>
3765 template <
typename Rhs>
3771 template <
typename Rhs>
3777 template <
typename Rhs>
3783 template <
typename Rhs>
3789 template <
typename Rhs>
3808 template <
typename T>
3829 double rhs,
double max_abs_error) {
3837 double rhs,
double max_abs_error) {
3857 float rhs,
float max_abs_error) {
3865 float rhs,
float max_abs_error) {
3871 template <
typename InnerMatcher>
3873 const InnerMatcher& inner_matcher) {
3883 template <
typename To>
3894 template <
typename Class,
typename FieldType,
typename FieldMatcher>
3900 field, MatcherCast<const FieldType&>(matcher)));
3911 template <
typename Class,
typename PropertyType,
typename PropertyMatcher>
3914 PropertyType (Class::*property)()
const,
const PropertyMatcher& matcher) {
3938 template <
typename Callable,
typename ResultOfMatcher>
3943 MatcherCast<typename internal::CallableTraits<Callable>::ResultType>(
3978 str,
false,
false));
4025 #if GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING 4053 str,
false,
false));
4078 #endif // GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING 4106 template <
typename InnerMatcher>
4114 template <
typename Predicate>
4116 Truly(Predicate pred) {
4126 template <
typename SizeMatcher>
4128 SizeIs(
const SizeMatcher& size_matcher) {
4137 template <
typename DistanceMatcher>
4147 template <
typename Container>
4160 template <
typename Comparator,
typename ContainerMatcher>
4163 const ContainerMatcher& container_matcher) {
4170 template <
typename ContainerMatcher>
4172 WhenSorted(
const ContainerMatcher& container_matcher) {
4184 template <
typename TupleMatcher,
typename Container>
4187 Pointwise(
const TupleMatcher& tuple_matcher,
const Container& rhs) {
4193 tuple_matcher,
rhs);
4196 #if GTEST_HAS_STD_INITIALIZER_LIST_ 4199 template <
typename TupleMatcher,
typename T>
4201 const TupleMatcher& tuple_matcher, std::initializer_list<T> rhs) {
4202 return Pointwise(tuple_matcher, std::vector<T>(rhs));
4205 #endif // GTEST_HAS_STD_INITIALIZER_LIST_ 4218 template <
typename Tuple2Matcher,
typename RhsContainer>
4222 RhsContainer)>::type::value_type> >
4224 const RhsContainer& rhs_container) {
4234 typedef typename RhsStlContainer::value_type Second;
4235 const RhsStlContainer& rhs_stl_container =
4236 RhsView::ConstReference(rhs_container);
4239 ::std::vector<internal::BoundSecondMatcher<Tuple2Matcher, Second> > matchers;
4240 for (
typename RhsStlContainer::const_iterator it = rhs_stl_container.begin();
4241 it != rhs_stl_container.end(); ++it) {
4250 #if GTEST_HAS_STD_INITIALIZER_LIST_ 4253 template <
typename Tuple2Matcher,
typename T>
4257 std::initializer_list<T> rhs) {
4261 #endif // GTEST_HAS_STD_INITIALIZER_LIST_ 4281 template <
typename M>
4313 template <
typename M>
4321 template <
typename M>
4331 template <
typename FirstMatcher,
typename SecondMatcher>
4333 Pair(FirstMatcher first_matcher, SecondMatcher second_matcher) {
4335 first_matcher, second_matcher);
4340 template <
typename M>
4346 template <
typename T,
typename M>
4347 inline bool Value(
const T& value,
M matcher) {
4353 template <
typename T,
typename M>
4356 return SafeMatcherCast<const T&>(matcher).MatchAndExplain(value, listener);
4359 #if GTEST_LANG_CXX11 4362 template <
typename...
Args>
4363 inline internal::AllOfMatcher<
Args...>
AllOf(
const Args&... matchers) {
4364 return internal::AllOfMatcher<
Args...>(matchers...);
4367 template <
typename...
Args>
4368 inline internal::AnyOfMatcher<
Args...>
AnyOf(
const Args&... matchers) {
4369 return internal::AnyOfMatcher<
Args...>(matchers...);
4372 #endif // GTEST_LANG_CXX11 4381 template <
typename InnerMatcher>
4382 inline InnerMatcher
AllArgs(
const InnerMatcher& matcher) {
return matcher; }
4388 #define ASSERT_THAT(value, matcher) ASSERT_PRED_FORMAT1(\ 4389 ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value) 4390 #define EXPECT_THAT(value, matcher) EXPECT_PRED_FORMAT1(\ 4391 ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value) 4398 #include "gmock/internal/custom/gmock-matchers.h" 4399 #endif // GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_ LhsView::const_reference LhsStlContainerReference
static const char * NegatedDesc()
virtual void DescribeTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
PolymorphicMatcher< internal::IsNullMatcher > IsNull()
virtual bool MatchAndExplain(Container container, MatchResultListener *listener) const
virtual bool MatchAndExplain(Container container, MatchResultListener *listener) const
virtual void DescribeTo(::std::ostream *os) const
Matcher< T > MatcherCast(const M &matcher)
internal::GtMatcher< Rhs > Gt(Rhs x)
bool MatchAndExplainImpl(true_type, const Class *p, MatchResultListener *listener) const
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
static void ExplainMatchFailuresTo(const MatcherTuple &matchers, const ValueTuple &values,::std::ostream *os)
void DescribeToHelper(bool expect_eq,::std::ostream *os) const
virtual void DescribeNegationTo(::std::ostream *os) const
StartsWithMatcher(const StringType &prefix)
StrEqualityMatcher(const StringType &str, bool expect_eq, bool case_sensitive)
virtual void DescribeTo(::std::ostream *os) const
GeMatcher(const Rhs &rhs)
PolymorphicMatcher< internal::MatchesRegexMatcher > MatchesRegex(const internal::RE *regex)
CallableTraits< Callable >::StorageType CallableStorageType
Impl(const Tuple2Matcher &tm, const Second &second)
internal::NeMatcher< Rhs > Ne(Rhs x)
bool operator()(const A &a, const B &b) const
static const char * Desc()
ContainerEqMatcher(const Container &expected)
Impl(const InnerMatcher &matcher)
bool MatchAndExplain(const T &value, MatchResultListener *listener) const
void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
static const char * Desc()
PolymorphicMatcher< internal::NotNullMatcher > NotNull()
PredicateFormatterFromMatcher< M > MakePredicateFormatterFromMatcher(M matcher)
GTEST_API_ AssertionResult AssertionFailure()
bool operator()(const A &a, const B &b) const
virtual void DescribeNegationTo(::std::ostream *os) const
internal::StlContainerView< RhsContainer > RhsView
static Matcher< T > Cast(const M &polymorphic_matcher_or_value)
EitherOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
PolymorphicMatcher< internal::StartsWithMatcher< internal::string > > StartsWith(const internal::string &prefix)
std::iterator_traits< typename ContainerView::type::const_iterator >::difference_type DistanceType
virtual void DescribeNegationTo(::std::ostream *os) const
static void CheckIsValid(Functor)
Impl(const Matcher< U > &source_matcher)
MatchResultListener(::std::ostream *os)
BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
virtual void DescribeTo(::std::ostream *os) const
WhenDynamicCastToMatcher(const Matcher< To & > &matcher)
virtual void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
internal::EqMatcher< T > Eq(T x)
void ExplainMatchResultTo(T x,::std::ostream *os) const
ComparisonBase(const Rhs &rhs)
bool operator()(const A &a, const B &b) const
::std::string PrintToString(const T &value)
LhsView::type LhsStlContainer
static Matcher< T > Cast(const Matcher< U > &source_matcher)
Map field(FieldType Class::*field)
internal::StlContainerView< GTEST_REMOVE_REFERENCE_AND_CONST_(LhsContainer)> LhsView
::std::ostream * stream()
static Matcher< T > CastImpl(const M &value, BooleanConstant< false >)
internal::StlContainerView< RawContainer > View
#define GTEST_LOG_(severity)
internal::SizeIsMatcher< SizeMatcher > SizeIs(const SizeMatcher &size_matcher)
virtual bool MatchAndExplain(Container container, MatchResultListener *listener) const
RawPairType::second_type SecondType
Matcher(const MatcherInterface< const internal::string & > *impl)
ElementsAreArrayMatcher(Iter first, Iter last)
GTEST_API_ bool FindPairing(const MatchMatrix &matrix, MatchResultListener *listener)
StlContainer::value_type Element
virtual bool MatchAndExplain(Pointer pointer, MatchResultListener *listener) const
uint32_t digits10(uint64_t v)
virtual void DescribeTo(::std::ostream *os) const
void DescribeTo(::std::ostream *os) const
constexpr detail::Map< Move > move
PolymorphicMatcher< internal::MatchesRegexMatcher > ContainsRegex(const internal::RE *regex)
static Matcher< T > Cast(const M &polymorphic_matcher_or_value)
size_t SpaceIndex(size_t ilhs, size_t irhs) const
static Matcher< T > Cast(const Matcher< U > &matcher)
void Run(size_t iterations, ValueT kMin, ValueT kMax, Op &&op)
internal::KeyMatcher< M > Key(M inner_matcher)
bool HasEdge(size_t ilhs, size_t irhs) const
EndsWithMatcher(const StringType &suffix)
virtual void DescribeNegationTo(::std::ostream *os) const
internal::BeginEndDistanceIsMatcher< DistanceMatcher > BeginEndDistanceIs(const DistanceMatcher &distance_matcher)
internal::string str() const
bool operator()(const A &a, const B &b) const
auto begin(TestAdlIterable &instance)
virtual bool MatchAndExplain(Container container, MatchResultListener *listener) const
bool IsInterested() const
InnerMatcher AllArgs(const InnerMatcher &matcher)
internal::StlContainerView< GTEST_REMOVE_REFERENCE_AND_CONST_(LhsContainer)> LhsView
void DescribeTo(::std::ostream *os) const
void DescribeTo(::std::ostream *os) const
bool HasMaxAbsError() const
NotMatcherImpl(const Matcher< T > &matcher)
virtual void DescribeNegationTo(::std::ostream *os) const
bool MatchPrintAndExplain(Value &value, const Matcher< T > &matcher, MatchResultListener *listener)
static const char * Desc()
virtual void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
void DescribeNegationTo(::std::ostream *os) const
EachMatcherImpl(InnerMatcher inner_matcher)
internal::PointwiseMatcher< TupleMatcher, GTEST_REMOVE_CONST_(Container)> Pointwise(const TupleMatcher &tuple_matcher, const Container &rhs)
internal::FloatingEqMatcher< double > NanSensitiveDoubleEq(double rhs)
QuantifierMatcherImpl(InnerMatcher inner_matcher)
internal::ArgsMatcher< InnerMatcher > Args(const InnerMatcher &matcher)
bool TupleMatches(const MatcherTuple &matcher_tuple, const ValueTuple &value_tuple)
PolymorphicMatcher< internal::EndsWithMatcher< internal::string > > EndsWith(const internal::string &suffix)
virtual bool MatchAndExplain(T obj, MatchResultListener *listener) const
internal::UnorderedElementsAreArrayMatcher< typename::std::iterator_traits< Iter >::value_type > UnorderedElementsAreArray(Iter first, Iter last)
bool CaseInsensitiveCStringEquals(const wchar_t *lhs, const wchar_t *rhs)
PolymorphicMatcher< internal::WhenDynamicCastToMatcher< To > > WhenDynamicCastTo(const Matcher< To > &inner_matcher)
#define GTEST_COMPILE_ASSERT_(expr, msg)
const Impl & impl() const
bool prefix(Cursor &c, uint32_t expected)
PolymorphicMatcher< internal::ContainerEqMatcher< GTEST_REMOVE_CONST_(Container)> > ContainerEq(const Container &rhs)
FieldMatcher(FieldType Class::*field, const Matcher< const FieldType & > &matcher)
static const char * NegatedDesc()
bool MatchAndExplainImpl(false_type, const Class &obj, MatchResultListener *listener) const
bool MatchAndExplain(T &x, MatchResultListener *) const
View::const_reference StlContainerReference
virtual bool MatchAndExplain(PairType key_value, MatchResultListener *listener) const
virtual bool MatchAndExplain(Container container, MatchResultListener *listener) const
virtual void DescribeNegationTo(::std::ostream *os) const
internal::AllOfResult2< M1, M2 >::type AllOf(M1 m1, M2 m2)
internal::RefMatcher< T & > Ref(T &x)
static void GetCastTypeDescription(::std::ostream *os)
PolymorphicMatcher< internal::StrEqualityMatcher< internal::string > > StrEq(const internal::string &str)
virtual void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
::std::vector< ElementMatcherPair > ElementMatcherPairs
#define GTEST_DISALLOW_ASSIGN_(type)
void DescribeTo(::std::ostream *os) const
Impl(const SizeMatcher &size_matcher)
FOLLY_PUSH_WARNING RHS rhs
virtual ~MatcherDescriberInterface()
void DescribeNegationTo(::std::ostream *os) const
PairMatcher(FirstMatcher first_matcher, SecondMatcher second_matcher)
bool MatchAndExplain(CharType *s, MatchResultListener *listener) const
static const char * Desc()
bool MatchAndExplain(From &from, MatchResultListener *listener) const
static const char * NegatedDesc()
WhenDynamicCastToMatcherBase(const Matcher< To > &matcher)
virtual bool MatchAndExplain(Lhs lhs, MatchResultListener *) const
internal::LtMatcher< Rhs > Lt(Rhs x)
StreamMatchResultListener(::std::ostream *os)
ElementsAreMatcher(const MatcherTuple &args)
void DescribeNegationTo(::std::ostream *os) const
static const char * Desc()
GtMatcher(const Rhs &rhs)
MatcherBase(const MatcherInterface< T > *impl)
internal::FloatingEqMatcher< double > DoubleNear(double rhs, double max_abs_error)
bool MatchAndExplain(T x, MatchResultListener *listener) const
WhenDynamicCastToMatcher(const Matcher< To > &matcher)
internal::FloatingEqMatcher< double > DoubleEq(double rhs)
bool MatchAndExplain(CharType *s, MatchResultListener *listener) const
void DescribeTo(::std::ostream *os) const
NotMatcher(InnerMatcher matcher)
static const char * Desc()
static const char * Desc()
Matcher(const MatcherInterface< T > *impl)
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
virtual void DescribeNegationTo(::std::ostream *os) const
bool operator()(const A &a, const B &b) const
void DescribeNegationTo(::std::ostream *os) const
constexpr auto size(C const &c) -> decltype(c.size())
virtual void DescribeNegationTo(::std::ostream *os) const
static const char * NegatedDesc()
static Matcher< T > CastImpl(const M &polymorphic_matcher_or_value, BooleanConstant< true >)
MatchMatrix(size_t num_elements, size_t num_matchers)
internal::LeMatcher< Rhs > Le(Rhs x)
MatchesRegexMatcher(const RE *regex, bool full_match)
RawPairType::first_type FirstType
GTEST_API_ AssertionResult AssertionSuccess()
PolymorphicMatcher< Impl > MakePolymorphicMatcher(const Impl &impl)
TrulyMatcher(Predicate pred)
BeginEndDistanceIsMatcher(const DistanceMatcher &distance_matcher)
void DescribeTo(::std::ostream *os) const
PolymorphicMatcher< internal::StrEqualityMatcher< internal::string > > StrCaseNe(const internal::string &str)
::testing::tuple< const LhsValue &, const RhsValue & > InnerMatcherArg
StlContainer::const_iterator StlContainerConstIterator
BothOfMatcherImpl(const Matcher< T > &matcher1, const Matcher< T > &matcher2)
static void ExplainMatchFailuresTo(const MatcherTuple &, const ValueTuple &,::std::ostream *)
def Iter(n, format, sep='')
virtual bool MatchAndExplain(Tuple args, MatchResultListener *) const
void DescribeNegationTo(::std::ostream *os) const
MatcherDescriberVec & matcher_describers()
void DescribeTo(::std::ostream *os) const
internal::ElementsAreArrayMatcher< typename::std::iterator_traits< Iter >::value_type > ElementsAreArray(Iter first, Iter last)
string Print(const T &value)
PolymorphicMatcher(const Impl &an_impl)
FloatingEqMatcher(FloatType expected, bool nan_eq_nan, FloatType max_abs_error)
MatchMatrix AnalyzeElements(ElementIter elem_first, ElementIter elem_last,::std::vector< string > *element_printouts, MatchResultListener *listener) const
MatchResultListener & operator<<(const T &x)
bool MatchAndExplainImpl(true_type, const Class *p, MatchResultListener *listener) const
bool MatchAndExplain(const T &value, MatchResultListener *listener) const
PolymorphicMatcher< internal::HasSubstrMatcher< internal::string > > HasSubstr(const internal::string &substring)
::testing::tuple< T, Second > ArgTuple
void DescribeNegationTo(::std::ostream *os) const
std::enable_if< detail::is_chrono_conversion< Tgt, Src >::value, Tgt >::type to(const Src &value)
bool Value(const T &value, M matcher)
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
void DescribeTo(::std::ostream *os) const
internal::PairMatcher< FirstMatcher, SecondMatcher > Pair(FirstMatcher first_matcher, SecondMatcher second_matcher)
static Message Elements(size_t n)
void PrintIfNotEmpty(const internal::string &explanation,::std::ostream *os)
virtual bool MatchAndExplain(Super &x, MatchResultListener *listener) const
#define GTEST_REMOVE_CONST_(T)
internal::NotMatcher< InnerMatcher > Not(InnerMatcher m)
UnorderedElementsAreArrayMatcher(Iter first, Iter last)
#define GTEST_CHECK_(condition)
internal::UnorderedElementsAreArrayMatcher< typename internal::BoundSecondMatcher< Tuple2Matcher, typename internal::StlContainerView< GTEST_REMOVE_CONST_(RhsContainer)>::type::value_type > > UnorderedPointwise(const Tuple2Matcher &tuple2_matcher, const RhsContainer &rhs_container)
bool MatchAndExplain(const Pointer &p, MatchResultListener *) const
virtual void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
auto end(TestAdlIterable &instance)
PropertyMatcher(PropertyType(Class::*property)() const, const Matcher< RefToConstProperty > &matcher)
internal::AnyOfResult2< M1, M2 >::type AnyOf(M1 m1, M2 m2)
internal::MatcherAsPredicate< M > Matches(M matcher)
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
Matcher< T > MakeMatcher(const MatcherInterface< T > *impl)
Matcher< T > SafeMatcherCast(const M &polymorphic_matcher)
virtual bool MatchAndExplain(LhsContainer lhs, MatchResultListener *listener) const
UnorderedElementsAreMatcherImpl(InputIter first, InputIter last)
::std::pair< size_t, size_t > ElementMatcherPair
void UniversalPrint(const T &value,::std::ostream *os)
internal::FloatingEqMatcher< float > NanSensitiveFloatEq(float rhs)
virtual void DescribeTo(::std::ostream *os) const
Functor::result_type ResultType
int comparator(const void *ap, const void *bp)
void DescribeNegationTo(::std::ostream *os) const
void DescribeTo(::std::ostream *os) const
virtual void DescribeNegationTo(::std::ostream *os) const
DummyMatchResultListener()
bool MatchAndExplain(CharType *s, MatchResultListener *listener) const
GTEST_API_ string FormatMatcherDescription(bool negation, const char *matcher_name, const Strings ¶m_values)
static map< string, int > m
bool MatchAndExplain(CharType *s, MatchResultListener *listener) const
internal::PointeeMatcher< InnerMatcher > Pointee(const InnerMatcher &inner_matcher)
virtual bool MatchAndExplain(PairType a_pair, MatchResultListener *listener) const
void DescribeNegationTo(::std::ostream *os) const
GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener)
RhsView::type RhsStlContainer
PairMatcherImpl(FirstMatcher first_matcher, SecondMatcher second_matcher)
PolymorphicMatcher< internal::FieldMatcher< Class, FieldType > > Field(FieldType Class::*field, const FieldMatcher &matcher)
static const char * Desc()
virtual bool MatchAndExplain(LhsContainer lhs, MatchResultListener *listener) const
bool MatchAndExplain(const Pointer &p, MatchResultListener *) const
bool MatchAndExplain(CharType *s, MatchResultListener *listener) const
virtual void DescribeNegationTo(::std::ostream *os) const
void DescribeTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
ElementsAreMatcherImpl(InputIter first, InputIter last)
View::const_reference StlContainerReference
virtual void DescribeTo(::std::ostream *os) const
ContainsMatcherImpl(InnerMatcher inner_matcher)
static Matcher< T > Cast(const Matcher< T > &matcher)
static const char *const value
internal::FloatingEqMatcher< float > NanSensitiveFloatNear(float rhs, float max_abs_error)
virtual void DescribeTo(::std::ostream *os) const
static bool Matches(const MatcherTuple &matcher_tuple, const ValueTuple &value_tuple)
MonomorphicImpl(const Impl &impl)
#define GTEST_REMOVE_REFERENCE_AND_CONST_(T)
static ResType Invoke(ResType(*f)(ArgType), T arg)
void DescribeTo(::std::ostream *os) const
PolymorphicMatcher< internal::StrEqualityMatcher< internal::string > > StrNe(const internal::string &str)
PolymorphicMatcher< internal::PropertyMatcher< Class, PropertyType > > Property(PropertyType(Class::*property)() const, const PropertyMatcher &matcher)
PUSHMI_INLINE_VAR constexpr struct folly::pushmi::operators::from_fn from
**Optimized Holders **The template hazptr_array< M > provides most of the functionality *of M hazptr_holder s but with faster construction destruction *for M
bool operator()(const T &lhs, const U &rhs) const
void ExplainMatchFailureTupleTo(const MatcherTuple &matchers, const ValueTuple &values,::std::ostream *os)
bool MatchAndExplain(const MatcheeStringType &s, MatchResultListener *) const
static const char * Desc()
bool operator()(const A &a, const B &b) const
const type & const_reference
ResultOfMatcher(Callable callable, const Matcher< ResultType > &matcher)
virtual void DescribeTo(::std::ostream *os) const
HasSubstrMatcher(const StringType &substring)
void SetEdge(size_t ilhs, size_t irhs, bool b)
::std::vector< const MatcherDescriberInterface * > MatcherDescriberVec
bool MatchAndExplain(const LhsContainer &lhs, MatchResultListener *listener) const
Matcher< Lhs > TypedEq(const Rhs &rhs)
LeMatcher(const Rhs &rhs)
::std::ostream *const stream_
Impl(FloatType expected, bool nan_eq_nan, FloatType max_abs_error)
internal::WhenSortedByMatcher< internal::LessComparator, ContainerMatcher > WhenSorted(const ContainerMatcher &container_matcher)
View::const_reference StlContainerReference
internal::FloatingEqMatcher< double > NanSensitiveDoubleNear(double rhs, double max_abs_error)
uint64_t diff(uint64_t a, uint64_t b)
bool ExplainMatchResult(M matcher, const T &value, MatchResultListener *listener)
bool MatchAndExplain(const MatcheeStringType &s, MatchResultListener *) const
const T & move(const T &t)
RawPairType::first_type KeyType
static string GetToName()
virtual bool MatchAndExplain(T value, MatchResultListener *listener) const
virtual void DescribeTo(::std::ostream *os) const
static bool Matches(const MatcherTuple &, const ValueTuple &)
ContainerView::type::size_type SizeType
virtual ~MatchResultListener()=0
WhenSortedByMatcher(const Comparator &comparator, const ContainerMatcher &matcher)
virtual void DescribeTo(::std::ostream *os) const
Impl(const TupleMatcher &tuple_matcher, const RhsStlContainer &rhs)
const MatcherDescriberInterface * GetDescriber() const
virtual void DescribeTo(::std::ostream *os) const
LhsView::const_reference LhsStlContainerReference
void DescribeTo(::std::ostream *os) const
void DescribeTo(::std::ostream *os) const
::std::vector< Matcher< const Element & > > MatcherVec
bool MatchAndExplain(const MatcheeStringType &s, MatchResultListener *) const
virtual void DescribeNegationTo(::std::ostream *os) const
virtual void DescribeTo(::std::ostream *os) const
GTEST_API_ ElementMatcherPairs FindMaxBipartiteMatching(const MatchMatrix &g)
StlContainer::value_type Element
internal::EachMatcher< M > Each(M matcher)
bool IsReadableTypeName(const string &type_name)
static const char * NegatedDesc()
PointeeOf< GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee
OutIter TransformTupleValues(Func f, const Tuple &t, OutIter out)
LhsStlContainer::value_type LhsValue
NeMatcher(const Rhs &rhs)
::std::vector< string > Strings
internal::FloatingEqMatcher< float > FloatEq(float rhs)
bool MatchAndExplain(const MatcheeStringType &s, MatchResultListener *) const
virtual void DescribeTo(::std::ostream *os) const
StlContainer::value_type Element
const Pointer::element_type * GetRawPointer(const Pointer &p)
LhsView::type LhsStlContainer
#define GTEST_REFERENCE_TO_CONST_(T)
bool_constant< false > false_type
BoundSecondMatcher(const Tuple2Matcher &tm, const Second &second)
virtual void DescribeNegationTo(::std::ostream *os) const
bool StaticAssertTypeEq()
View::const_reference StlContainerReference
bool CaseInsensitiveStringEquals(const StringType &s1, const StringType &s2)
virtual void DescribeNegationTo(::std::ostream *os) const
BoundSecondMatcher< Tuple2Matcher, Second > MatcherBindSecond(const Tuple2Matcher &tm, const Second &second)
void DescribeNegationTo(::std::ostream *os) const
virtual bool MatchAndExplain(T, MatchResultListener *) const
const internal::AnythingMatcher _
virtual void DescribeNegationTo(::std::ostream *os) const
PointeeMatcher(const InnerMatcher &matcher)
virtual bool MatchAndExplain(Container container, MatchResultListener *listener) const
void DescribeNegationTo(::std::ostream *os) const
bool MatchAndExplainImpl(false_type, const Class &obj, MatchResultListener *listener) const
KeyMatcherImpl(InnerMatcher inner_matcher)
CallableTraits< Callable >::ResultType ResultType
FloatingEqMatcher(FloatType expected, bool nan_eq_nan)
StlContainerView< RawContainer > View
UnorderedElementsAreArrayMatcher()
#define GMOCK_KIND_OF_(type)
UnorderedElementsAreMatcher(const MatcherTuple &args)
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
virtual void DescribeNegationTo(::std::ostream *os) const
bool MatchAndExplain(From from, MatchResultListener *listener) const
virtual void DescribeTo(::std::ostream *os) const
internal::GeMatcher< Rhs > Ge(Rhs x)
Iter ArrayAwareFind(Iter begin, Iter end, const Element &elem)
PolymorphicMatcher< internal::StrEqualityMatcher< internal::string > > StrCaseEq(const internal::string &str)
bool operator()(const T &x) const
static const char * NegatedDesc()
void DescribeNegationTo(::std::ostream *os) const
void operator=(const BoundSecondMatcher &)
void ExplainSuccess(const internal::string &first_explanation, const internal::string &second_explanation, MatchResultListener *listener) const
internal::StlContainerView< RawContainer > View
void DescribeNegationTo(::std::ostream *os) const
EitherOfMatcherImpl(const Matcher< T > &matcher1, const Matcher< T > &matcher2)
internal::ContainsMatcher< M > Contains(M matcher)
#define GTEST_REMOVE_REFERENCE_(T)
internal::StlContainerView< GTEST_REMOVE_REFERENCE_AND_CONST_(Container)> ContainerView
LtMatcher(const Rhs &rhs)
EqMatcher(const Rhs &rhs)
virtual void DescribeTo(::std::ostream *os) const
Impl(const DistanceMatcher &distance_matcher)
internal::StlContainerView< Container > View
static void CheckIsValid(ResType(*f)(ArgType))
internal::ResultOfMatcher< Callable > ResultOf(Callable callable, const ResultOfMatcher &matcher)
PolymorphicMatcher< internal::TrulyMatcher< Predicate > > Truly(Predicate pred)
PointwiseMatcher(const TupleMatcher &tuple_matcher, const RhsContainer &rhs)
RemoveConstFromKey< typename LhsStlContainer::value_type >::type LhsValue
Impl(CallableStorageType callable, const Matcher< ResultType > &matcher)
internal::StlContainerView< GTEST_REMOVE_REFERENCE_AND_CONST_(Container)> ContainerView
static const char * Desc()
static const char * Desc()
MatcherAsPredicate(M matcher)
Matcher(const MatcherInterface< internal::string > *impl)
static Message Elements(size_t count)
bool MatchAndExplain(const MatcheeStringType &s, MatchResultListener *) const
virtual void DescribeNegationTo(::std::ostream *os) const
SizeIsMatcher(const SizeMatcher &size_matcher)
virtual void DescribeNegationTo(::std::ostream *os) const
internal::WhenSortedByMatcher< Comparator, ContainerMatcher > WhenSortedBy(const Comparator &comparator, const ContainerMatcher &container_matcher)
StringMatchResultListener()
static const char * Desc()
std::vector< int > values(1'000)
bool MatchAndExplainImpl(bool all_elements_should_match, Container container, MatchResultListener *listener) const
static ResultType Invoke(Functor f, T arg)
constexpr detail::First first
RhsStlContainer::value_type RhsValue
::std::ostream & GetDesc(::std::ostream &os)
Impl(const Comparator &comparator, const ContainerMatcher &matcher)
virtual void DescribeNegationTo(::std::ostream *os) const
internal::FloatingEqMatcher< float > FloatNear(float rhs, float max_abs_error)