Searched refs:PrintMeNot (Results 1 – 1 of 1) sorted by relevance
2078 class PrintMeNot {}; class2080 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() argument2089 MOCK_METHOD1(Foo, PrintMeNot(PrintMeNot));2103 .WillOnce(Return(PrintMeNot())); in TEST_F()2104 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()2110 .WillOnce(Return(PrintMeNot())); in TEST_F()2111 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()2117 .WillByDefault(Return(PrintMeNot())); in TEST_F()2118 helper_.Foo(PrintMeNot()); // This should generate a warning. in TEST_F()