diff options
author | Chris Baish <chris.baish@gmail.com> | 2019-07-19 07:12:46 +0100 |
---|---|---|
committer | Chris Baish <chris.baish@gmail.com> | 2019-07-19 07:12:46 +0100 |
commit | d64e4cf14e488f10374df7548513667e4fba6399 (patch) | |
tree | bd46a4241847510b22d81672e65fb22dbe003e53 /googlemock/docs/for_dummies.md | |
parent | adb490773e8d5f8a84e863f4bd6d96a707750093 (diff) | |
parent | b77e5c76252bac322bb82c5b444f050bd0d92451 (diff) | |
download | googletest-d64e4cf14e488f10374df7548513667e4fba6399.tar.gz googletest-d64e4cf14e488f10374df7548513667e4fba6399.tar.bz2 googletest-d64e4cf14e488f10374df7548513667e4fba6399.zip |
Merge remote-tracking branch 'upstream/master' into primer_md_table_update
Diffstat (limited to 'googlemock/docs/for_dummies.md')
-rw-r--r-- | googlemock/docs/for_dummies.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/for_dummies.md b/googlemock/docs/for_dummies.md index b75c9a09..5433e8b3 100644 --- a/googlemock/docs/for_dummies.md +++ b/googlemock/docs/for_dummies.md @@ -1,6 +1,6 @@ ## Googletest Mocking (gMock) for Dummies {#GMockForDummies} -<!-- GOOGLETEST_CM0012 DO NOT DELETE --> +<!-- GOOGLETEST_CM0013 DO NOT DELETE --> ### What Is gMock? @@ -499,7 +499,7 @@ always return 100 as `n++` is only evaluated once. Similarly, `Return(new Foo)` will create a new `Foo` object when the `EXPECT_CALL()` is executed, and will return the same pointer every time. If you want the side effect to happen every time, you need to define a custom action, which we'll teach in the -[cook book](http://<!-- GOOGLETEST_CM0011 DO NOT DELETE -->). +[cook book](http://<!-- GOOGLETEST_CM0012 DO NOT DELETE -->). Time for another quiz! What do you think the following means? |