From 83d061af56eab0f030e44557c1db9fcd3d3c21b7 Mon Sep 17 00:00:00 2001
From: Abseil Team <absl-team@google.com>
Date: Mon, 11 Oct 2021 19:13:40 -0400
Subject: [PATCH] Export Test - Do Not Merge

add missing using ::testing::DoAll when DoAll used in example

PiperOrigin-RevId: 402416497
---
 docs/gmock_cook_book.md | 1 +
 1 file changed, 1 insertion(+)

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;