Searched refs:PrintMeNot (Results 1 – 1 of 1) sorted by relevance
2250 class PrintMeNot {}; class2252 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() argument2261 MOCK_METHOD1(Foo, PrintMeNot(PrintMeNot));2275 .WillOnce(Return(PrintMeNot())); in TEST_F()2276 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()2282 .WillOnce(Return(PrintMeNot())); in TEST_F()2283 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()2289 .WillByDefault(Return(PrintMeNot())); in TEST_F()2290 helper_.Foo(PrintMeNot()); // This should generate a warning. in TEST_F()