From 178cfacb24f8937ef7a585d9bcfffd967386306a Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Mon, 11 Oct 2021 19:13:40 -0400 Subject: [PATCH] Googletest export 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;