Home
last modified time | relevance | path

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

/external/googletest/googlemock/test/
Dgmock-spec-builders_test.cc2250 class PrintMeNot {}; class
2252 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() argument
2261 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()