HomeSort by relevance Sort by last modified time
    Searched refs:TypedEq (Results 1 - 4 of 4) sorted by null

  /external/chromium/testing/gmock/test/
gmock-generated-function-mockers_test.cc 73 using testing::TypedEq;
253 EXPECT_CALL(mock_foo_, OverloadedOnArgumentType(TypedEq<char>('a')))
gmock_link_test.h 73 // TypedEq
175 using testing::TypedEq;
527 // Tests the linkage of the TypedEq matcher.
532 ON_CALL(mock, VoidFromIntRef(TypedEq<int&>(a))).WillByDefault(Return());
gmock-matchers_test.cc 119 using testing::TypedEq;
563 Matcher<char> m3 = SafeMatcherCast<char>(TypedEq<int>('a'));
720 // Tests that TypedEq<T>(v) matches values of type T that's equal to v.
722 Matcher<char> m1 = TypedEq<char>('a');
726 Matcher<int> m2 = TypedEq<int>(6);
731 // Tests that TypedEq(v) describes itself properly.
733 EXPECT_EQ("is equal to 2", Describe(TypedEq<int>(2)));
736 // Tests that TypedEq<T>(v) has type Matcher<T>.
751 // Verfies that the type of TypedEq<T>(v) is Matcher<T>.
752 Type<Matcher<int> >::IsTypeOf(TypedEq<int>(5))
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]

Completed in 42 milliseconds