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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-function-mockers_test.cc73 using testing::TypedEq;
276 EXPECT_CALL(mock_foo_, OverloadedOnArgumentType(TypedEq<char>('a')))
H A Dgmock_link_test.h73 // TypedEq
175 using testing::TypedEq;
527 // Tests the linkage of the TypedEq matcher.
532 ON_CALL(mock, VoidFromIntRef(TypedEq<int&>(a))).WillByDefault(Return());
H A Dgmock-matchers_test.cc134 using testing::TypedEq;
691 Matcher<char> m3 = SafeMatcherCast<char>(TypedEq<int>('a'));
896 // Tests that TypedEq<T>(v) matches values of type T that's equal to v.
898 Matcher<char> m1 = TypedEq<char>('a');
902 Matcher<int> m2 = TypedEq<int>(6);
907 // Tests that TypedEq(v) describes itself properly.
909 EXPECT_EQ("is equal to 2", Describe(TypedEq<int>(2)));
912 // Tests that TypedEq<T>(v) has type Matcher<T>.
927 // Verfies that the type of TypedEq<T>(v) is Matcher<T>.
928 Type<Matcher<int> >::IsTypeOf(TypedEq<in
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3753 // TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
3762 inline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); } function in namespace:testing

Completed in 39 milliseconds