diff options
author | Abseil Team <absl-team@google.com> | 2021-10-11 23:13:40 (GMT) |
---|---|---|
committer | Andy Soffer <asoffer@google.com> | 2021-10-13 16:28:13 (GMT) |
commit | 178cfacb24f8937ef7a585d9bcfffd967386306a (patch) | |
tree | 55c916a59686301ab6564195d4d7e56684dd636f /docs | |
parent | dc7a0779d1a075da203d3bce67daf88b19d4284b (diff) | |
download | googletest-178cfacb24f8937ef7a585d9bcfffd967386306a.zip googletest-178cfacb24f8937ef7a585d9bcfffd967386306a.tar.gz googletest-178cfacb24f8937ef7a585d9bcfffd967386306a.tar.bz2 |
Googletest export
add missing using ::testing::DoAll when DoAll used in example
PiperOrigin-RevId: 402416497
Diffstat (limited to 'docs')
-rw-r--r-- | docs/gmock_cook_book.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index f7954a2..b41c5b9 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; |