Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc2117 class PrintMeNot {}; class
2119 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() argument
2128 MOCK_METHOD1(Foo, PrintMeNot(PrintMeNot));
2142 EXPECT_CALL(helper_, Foo(_)).WillOnce(Return(PrintMeNot())); in TEST_F()
2143 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()
2148 EXPECT_CALL(helper_, Foo(_)).WillOnce(Return(PrintMeNot())); in TEST_F()
2149 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()
2154 ON_CALL(helper_, Foo(_)).WillByDefault(Return(PrintMeNot())); in TEST_F()
2155 helper_.Foo(PrintMeNot()); // This should generate a warning. in TEST_F()