diff options
author | Abseil Team <absl-team@google.com> | 2022-06-13 19:50:53 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-06-13 19:51:26 (GMT) |
commit | 8b521aa43aa570fb9a106099f12427ccff2a79cb (patch) | |
tree | f44e34429e599cd2638d5dc74ceb2aa5a563fdd7 /docs/gmock_cook_book.md | |
parent | b644b4fbbf07e35629b0daa44ec4110ddcbe2036 (diff) | |
download | googletest-8b521aa43aa570fb9a106099f12427ccff2a79cb.zip googletest-8b521aa43aa570fb9a106099f12427ccff2a79cb.tar.gz googletest-8b521aa43aa570fb9a106099f12427ccff2a79cb.tar.bz2 |
gmock_cook_book.md: Delete superfluous statement from 2014.
PiperOrigin-RevId: 454677195
Change-Id: I7a1419e22d617db41a5c310bc6f6158ba4cec1ab
Diffstat (limited to 'docs/gmock_cook_book.md')
-rw-r--r-- | docs/gmock_cook_book.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index b6abffa..8a11d86 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -392,8 +392,7 @@ Old macros and their new equivalents: If a mock method has no `EXPECT_CALL` spec but is called, we say that it's an "uninteresting call", and the default action (which can be specified using `ON_CALL()`) of the method will be taken. Currently, an uninteresting call will -also by default cause gMock to print a warning. (In the future, we might remove -this warning by default.) +also by default cause gMock to print a warning. However, sometimes you may want to ignore these uninteresting calls, and sometimes you may want to treat them as errors. gMock lets you make the decision |