]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/commitdiff
Googletest export
authorAbseil Team <absl-team@google.com>
Thu, 1 Aug 2019 17:41:23 +0000 (13:41 -0400)
committerGennadiy Civil <misterg@google.com>
Thu, 1 Aug 2019 20:05:57 +0000 (16:05 -0400)
Fix ON_CALL/EXPECT_CALL example comment

PiperOrigin-RevId: 261150884

googlemock/include/gmock/gmock.h

index 7096984b92358a315c5c5f440978543138d52a79..99c3d7871d0f92d472536d54035bd97e48ec71ca 100644 (file)
 
 // This file implements the following syntax:
 //
-//   ON_CALL(mock_object.Method(...))
+//   ON_CALL(mock_objectMethod(...))
 //     .With(...) ?
 //     .WillByDefault(...);
 //
 // where With() is optional and WillByDefault() must appear exactly
 // once.
 //
-//   EXPECT_CALL(mock_object.Method(...))
+//   EXPECT_CALL(mock_objectMethod(...))
 //     .With(...) ?
 //     .Times(...) ?
 //     .InSequence(...) *