Home
last modified time | relevance | path

Searched refs:MakePolymorphicMatcher (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h4470 return MakePolymorphicMatcher(
4483 return MakePolymorphicMatcher(
4511 return MakePolymorphicMatcher(
4530 return MakePolymorphicMatcher(
4544 return MakePolymorphicMatcher(
4558 return MakePolymorphicMatcher(
4587 return MakePolymorphicMatcher(
4594 return MakePolymorphicMatcher(
4601 return MakePolymorphicMatcher(
4608 return MakePolymorphicMatcher(
[all …]
H A Dgmock-generated-matchers.h.pump577 // MatcherInterface or using MakePolymorphicMatcher(). These
/freebsd-13.1/contrib/googletest/googlemock/docs/
H A DFrequentlyAskedQuestions.md20 by implementing `MatcherInterface` or using `MakePolymorphicMatcher()`,
112 If your matcher is defined using `MakePolymorphicMatcher()`:
116 using ::testing::MakePolymorphicMatcher;
127 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
135 using ::testing::MakePolymorphicMatcher;
148 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
156 using ::testing::MakePolymorphicMatcher;
174 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
181 using ::testing::MakePolymorphicMatcher;
195 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
H A DCookBook.md3042 `MatcherInterface` or using `MakePolymorphicMatcher()` instead (see
3167 easily with the help of `MakePolymorphicMatcher()`. Here's how you can
3171 using ::testing::MakePolymorphicMatcher;
3200 // to MakePolymorphicMatcher(). Note the return type.
3202 return MakePolymorphicMatcher(NotNullMatcher());
/freebsd-13.1/contrib/googletest/googlemock/
H A DCHANGES83 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher()
H A DREADME.md313 `MakePolymorphicMatcher()`, you'll need to update their definitions to
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc104 using testing::MakePolymorphicMatcher;
541 return MakePolymorphicMatcher(ReferencesBarOrIsZeroImpl()); in ReferencesBarOrIsZero()
584 return MakePolymorphicMatcher(PolymorphicIsEvenImpl()); in PolymorphicIsEven()
4688 return MakePolymorphicMatcher(DivisibleByImpl(n)); in DivisibleBy()
6393 return MakePolymorphicMatcher(IsHalfOfMatcher()); in IsHalfOf()