Home
last modified time | relevance | path

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

/external/google-breakpad/src/testing/test/
Dgmock-spec-builders_test.cc2078 class PrintMeNot {}; class
2080 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() argument
2089 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()