Home | History | Annotate | Download | only in test

Lines Matching refs:PrintMeNot

2078 class PrintMeNot {};
2080 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) {
2089 MOCK_METHOD1(Foo, PrintMeNot(PrintMeNot));
2103 .WillOnce(Return(PrintMeNot()));
2104 helper_.Foo(PrintMeNot()); // This is an expected call.
2110 .WillOnce(Return(PrintMeNot()));
2111 helper_.Foo(PrintMeNot()); // This is an expected call.
2117 .WillByDefault(Return(PrintMeNot()));
2118 helper_.Foo(PrintMeNot()); // This should generate a warning.