diff options
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; |