diff options
author | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-07-13 07:47:14 +0200 |
---|---|---|
committer | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-07-13 07:47:14 +0200 |
commit | 275bbc7884e9a12e9d9a46a95d5e1757c91d6313 (patch) | |
tree | b23c7abbf6c0df0924d31689c07745f79354e6b2 /googlemock/docs/cook_book.md | |
parent | 437e1008c97b6bf595fec85da42c6925babd96b2 (diff) | |
download | googletest-275bbc7884e9a12e9d9a46a95d5e1757c91d6313.tar.gz googletest-275bbc7884e9a12e9d9a46a95d5e1757c91d6313.tar.bz2 googletest-275bbc7884e9a12e9d9a46a95d5e1757c91d6313.zip |
rename and apply snake_case on CheatSheet.md
Diffstat (limited to 'googlemock/docs/cook_book.md')
-rw-r--r-- | googlemock/docs/cook_book.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/cook_book.md b/googlemock/docs/cook_book.md index 6b0228a5..f25b6817 100644 --- a/googlemock/docs/cook_book.md +++ b/googlemock/docs/cook_book.md @@ -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 |