Searched refs:NotCopyable (Results 1 – 1 of 1) sorted by relevance
4733 class NotCopyable { class4735 explicit NotCopyable(int a_value) : value_(a_value) {} in NotCopyable() function in testing::gmock_matchers_test::NotCopyable4739 bool operator==(const NotCopyable& rhs) const { in operator ==()4743 bool operator>=(const NotCopyable& rhs) const { in operator >=()4749 GTEST_DISALLOW_COPY_AND_ASSIGN_(NotCopyable);4753 const NotCopyable const_value1(1); in TEST()4754 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()4756 const NotCopyable n1(1), n2(2); in TEST()4762 NotCopyable value2(2); in TEST()4763 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()[all …]