summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-10-11 19:13:40 -0400
committerAndy Soffer <asoffer@google.com>2021-10-13 11:09:21 -0400
commit83d061af56eab0f030e44557c1db9fcd3d3c21b7 (patch)
tree55c916a59686301ab6564195d4d7e56684dd636f
parent72c6c09b0e6eed7a77663bd4d614a3712dcc0bb5 (diff)
downloadgoogletest-git-83d061af56eab0f030e44557c1db9fcd3d3c21b7.tar.gz
Export Test - Do Not Merge
add missing using ::testing::DoAll when DoAll used in example PiperOrigin-RevId: 402416497
-rw-r--r--docs/gmock_cook_book.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md
index f7954a21..b41c5b98 100644
--- a/docs/gmock_cook_book.md
+++ b/docs/gmock_cook_book.md
@@ -1980,6 +1980,7 @@ If the mock method also needs to return a value as well, you can chain
```cpp
using ::testing::_;
+using ::testing::DoAll;
using ::testing::Return;
using ::testing::SetArgPointee;