From 065a0c8140dd366411b85a51911b5095753c9295 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 27 Apr 2021 23:56:12 -0400 Subject: [PATCH] Googletest export Clean up links to Matchers Reference PiperOrigin-RevId: 370821457 --- docs/advanced.md | 5 ++--- docs/gmock_cook_book.md | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/advanced.md b/docs/advanced.md index 602dc7ea..0fe7b8e1 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -399,9 +399,8 @@ and you're ready to go. (Please read the [previous](#asserting-using-gmock-matchers) section first if you haven't.) -You can use the gMock -[string matchers](gmock_cheat_sheet.md#string-matchers) with -`EXPECT_THAT()` or `ASSERT_THAT()` to do more string comparison tricks +You can use the gMock [string matchers](reference/matchers.md#string-matchers) +with `EXPECT_THAT()` or `ASSERT_THAT()` to do more string comparison tricks (sub-string, prefix, suffix, regular expression, and etc). For example, ```c++ diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index 5b8910ba..891c35cf 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -1088,7 +1088,8 @@ z`. Note that in this example, it wasn't necessary specify the positional matchers. As a convenience and example, gMock provides some matchers for 2-tuples, -including the `Lt()` matcher above. See [here](#MultiArgMatchers) for the +including the `Lt()` matcher above. See +[Multi-argument Matchers](reference/matchers.md#MultiArgMatchers) for the complete list. Note that if you want to pass the arguments to a predicate of your own (e.g.