Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/googletest/googlemock/include/gmock/
Dgmock-matchers.h633 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher() function
4379 return MakePolymorphicMatcher(internal::IsNullMatcher());
4386 return MakePolymorphicMatcher(internal::NotNullMatcher());
4470 return MakePolymorphicMatcher(
4483 return MakePolymorphicMatcher(
4498 return MakePolymorphicMatcher(internal::FieldMatcher<Class, FieldType>(
4511 return MakePolymorphicMatcher(
4530 return MakePolymorphicMatcher(
4544 return MakePolymorphicMatcher(
4558 return MakePolymorphicMatcher(
[all …]
Dgmock-generated-matchers.h.pump577 // MatcherInterface or using MakePolymorphicMatcher(). These
/freebsd-12-stable/contrib/googletest/googlemock/docs/
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()) ...
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-12-stable/contrib/googletest/googlemock/
DCHANGES83 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher()
DREADME.md313 `MakePolymorphicMatcher()`, you'll need to update their definitions to
/freebsd-12-stable/contrib/googletest/googlemock/test/
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()