aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/cook_book.md
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2019-07-15 13:29:29 -0400
committerGitHub <noreply@github.com>2019-07-15 13:29:29 -0400
commit5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2 (patch)
treed9395480bfad1c576a230357c5791dd7e748afa7 /googlemock/docs/cook_book.md
parentee3aa831172090fd5442820f215cb04ab6062756 (diff)
parentf81dbd6ce8f055b20441aeb636b9c9b7bb23cc7a (diff)
downloadgoogletest-5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2.tar.gz
googletest-5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2.tar.bz2
googletest-5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2.zip
Merge pull request #2326 from kuzkry/missing-references-to-documentation
Add missing references to documentation
Diffstat (limited to 'googlemock/docs/cook_book.md')
-rw-r--r--googlemock/docs/cook_book.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/docs/cook_book.md b/googlemock/docs/cook_book.md
index 8f26a839..d0402091 100644
--- a/googlemock/docs/cook_book.md
+++ b/googlemock/docs/cook_book.md
@@ -3,7 +3,7 @@
<!-- GOOGLETEST_CM0011 DO NOT DELETE -->
You can find recipes for using Google Mock here. If you haven't yet,
-please read the [ForDummies](ForDummies.md) document first to make sure you understand
+please read the [ForDummies](for_dummies.md) document first to make sure you understand
the basics.
**Note:** Google Mock lives in the `testing` name space. For
@@ -866,7 +866,7 @@ says that `Blah()` will be called with arguments `x`, `y`, and `z` where
`x < y < z`.
As a convenience and example, Google Mock provides some matchers for
-2-tuples, including the `Lt()` matcher above. See the [CheatSheet](CheatSheet.md) for
+2-tuples, including the `Lt()` matcher above. See the [CheatSheet](cheat_sheet.md) for
the complete list.
Note that if you want to pass the arguments to a predicate of your own
@@ -1391,7 +1391,7 @@ instead of being overly constraining.
Google Mock allows you to impose an arbitrary DAG (directed acyclic
graph) on the calls. One way to express the DAG is to use the
-[After](CheatSheet.md#the-after-clause) clause of `EXPECT_CALL`.
+[After](cheat_sheet.md#the-after-clause) clause of `EXPECT_CALL`.
Another way is via the `InSequence()` clause (not the same as the
`InSequence` class), which we borrowed from jMock 2. It's less