Home
last modified time | relevance | path

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

/external/googletest/googlemock/test/
Dgmock-matchers_test.cc6914 class SampleAnyType { in TEST() class
6916 explicit SampleAnyType(int i) : index_(0), i_(i) {} in TEST() function in testing::gmock_matchers_test::__anond473036a0111::SampleAnyType
6917 explicit SampleAnyType(const std::string& s) : index_(1), s_(s) {} in TEST() function in testing::gmock_matchers_test::__anond473036a0111::SampleAnyType
6920 friend const T* any_cast(const SampleAnyType* any) { in TEST()
6936 Matcher<SampleAnyType> m = AnyWith<int>(Eq(1)); in TEST()
6937 EXPECT_TRUE(m.Matches(SampleAnyType(1))); in TEST()
6941 Matcher<SampleAnyType> m = AnyWith<std::string>(Eq("fail")); in TEST()
6942 EXPECT_FALSE(m.Matches(SampleAnyType(1))); in TEST()
6946 std::vector<SampleAnyType> a; in TEST()
6953 std::vector<SampleAnyType> b; in TEST()
[all …]