Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc99 class NotCopyable { class
101 explicit NotCopyable(int a_value) : value_(a_value) {} in NotCopyable() function in testing::gmock_matchers_test::__anonebb175b30111::NotCopyable
105 bool operator==(const NotCopyable& rhs) const { in operator ==()
109 bool operator>=(const NotCopyable& rhs) const { in operator >=()
116 NotCopyable(const NotCopyable&) = delete;
117 NotCopyable& operator=(const NotCopyable&) = delete;
121 const NotCopyable const_value1(1); in TEST()
122 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()
124 const NotCopyable n1(1), n2(2); in TEST()
130 NotCopyable value2(2); in TEST()
[all …]