Searched refs:TypedEq (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-generated-function-mockers_test.cc71 using testing::TypedEq;
277 EXPECT_CALL(mock_foo_, OverloadedOnArgumentType(TypedEq<char>('a')))
H A Dgmock_link_test.h72 // TypedEq
180 using testing::TypedEq;
532 // Tests the linkage of the TypedEq matcher.
537 ON_CALL(mock, VoidFromIntRef(TypedEq<int&>(a))).WillByDefault(Return());
H A Dgmock-matchers_test.cc133 using testing::TypedEq;
841 Matcher<char> m3 = SafeMatcherCast<char>(TypedEq<int>('a'));
1048 // Tests that TypedEq<T>(v) matches values of type T that's equal to v.
1050 Matcher<char> m1 = TypedEq<char>('a');
1054 Matcher<int> m2 = TypedEq<int>(6);
1059 // Tests that TypedEq(v) describes itself properly.
1061 EXPECT_EQ("is equal to 2", Describe(TypedEq<int>(2)));
1064 // Tests that TypedEq<T>(v) has type Matcher<T>.
1079 // Verfies that the type of TypedEq<T>(v) is Matcher<T>.
1080 Type<Matcher<int> >::IsTypeOf(TypedEq<in
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h4336 // TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
4345 inline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); } function in namespace:testing

Completed in 183 milliseconds