Searched refs:PrintMeNot (Results 1 – 1 of 1) sorted by relevance
2116 class PrintMeNot {}; class2118 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() argument2127 MOCK_METHOD1(Foo, PrintMeNot(PrintMeNot));2141 EXPECT_CALL(helper_, Foo(_)).WillOnce(Return(PrintMeNot())); in TEST_F()2142 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()2147 EXPECT_CALL(helper_, Foo(_)).WillOnce(Return(PrintMeNot())); in TEST_F()2148 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()2153 ON_CALL(helper_, Foo(_)).WillByDefault(Return(PrintMeNot())); in TEST_F()2154 helper_.Foo(PrintMeNot()); // This should generate a warning. in TEST_F()