Googletest export

Fix ON_CALL/EXPECT_CALL example comment

PiperOrigin-RevId: 261150884
This commit is contained in:
Abseil Team 2019-08-01 13:41:23 -04:00 committed by Gennadiy Civil
parent b15335dfa7
commit da28d30191

View File

@ -39,14 +39,14 @@
// This file implements the following syntax: // This file implements the following syntax:
// //
// ON_CALL(mock_object.Method(...)) // ON_CALL(mock_object, Method(...))
// .With(...) ? // .With(...) ?
// .WillByDefault(...); // .WillByDefault(...);
// //
// where With() is optional and WillByDefault() must appear exactly // where With() is optional and WillByDefault() must appear exactly
// once. // once.
// //
// EXPECT_CALL(mock_object.Method(...)) // EXPECT_CALL(mock_object, Method(...))
// .With(...) ? // .With(...) ?
// .Times(...) ? // .Times(...) ?
// .InSequence(...) * // .InSequence(...) *