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:
//
// ON_CALL(mock_object.Method(...))
// ON_CALL(mock_object, Method(...))
// .With(...) ?
// .WillByDefault(...);
//
// where With() is optional and WillByDefault() must appear exactly
// once.
//
// EXPECT_CALL(mock_object.Method(...))
// EXPECT_CALL(mock_object, Method(...))
// .With(...) ?
// .Times(...) ?
// .InSequence(...) *