Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc790 class SampleAnyType { class
792 explicit SampleAnyType(int i) : index_(0), i_(i) {} in SampleAnyType() function in testing::gmock_matchers_test::__anonebb175b30111::SampleAnyType
793 explicit SampleAnyType(const std::string& s) : index_(1), s_(s) {} in SampleAnyType() function in testing::gmock_matchers_test::__anonebb175b30111::SampleAnyType
796 friend const T* any_cast(const SampleAnyType* any) { in any_cast()
812 Matcher<SampleAnyType> m = AnyWith<int>(Eq(1)); in TEST()
813 EXPECT_TRUE(m.Matches(SampleAnyType(1))); in TEST()
817 Matcher<SampleAnyType> m = AnyWith<std::string>(Eq("fail")); in TEST()
818 EXPECT_FALSE(m.Matches(SampleAnyType(1))); in TEST()
822 std::vector<SampleAnyType> a; in TEST()
829 std::vector<SampleAnyType> b; in TEST()
[all …]