From f8f5fcab3bc8496d4073171e83e511a5e51aec6b Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Wed, 7 Aug 2019 09:36:14 -0400 Subject: Googletest export Fix broken links. PiperOrigin-RevId: 262123510 --- googlemock/docs/cook_book.md | 6 +++--- googlemock/docs/for_dummies.md | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'googlemock/docs') diff --git a/googlemock/docs/cook_book.md b/googlemock/docs/cook_book.md index f2b7d300..923817ee 100644 --- a/googlemock/docs/cook_book.md +++ b/googlemock/docs/cook_book.md @@ -3718,9 +3718,9 @@ A cardinality is used in `Times()` to tell gMock how many times you expect a call to occur. It doesn't have to be exact. For example, you can say `AtLeast(5)` or `Between(2, 4)`. -If the [built-in set](#CardinalityList) of cardinalities doesn't suit you, you -are free to define your own by implementing the following interface (in -namespace `testing`): +If the [built-in set](cheat_sheet.md#CardinalityList) of cardinalities doesn't +suit you, you are free to define your own by implementing the following +interface (in namespace `testing`): ```cpp class CardinalityInterface { diff --git a/googlemock/docs/for_dummies.md b/googlemock/docs/for_dummies.md index db579df5..91072828 100644 --- a/googlemock/docs/for_dummies.md +++ b/googlemock/docs/for_dummies.md @@ -412,7 +412,8 @@ gMock will report a googletest failure whenever the function is (wrongfully) called. We've seen `AtLeast(n)` as an example of fuzzy cardinalities earlier. For the -list of built-in cardinalities you can use, see [here](#CardinalityList). +list of built-in cardinalities you can use, see +[here](cheat_sheet.md#CardinalityList). The `Times()` clause can be omitted. **If you omit `Times()`, gMock will infer the cardinality for you.** The rules are easy to remember: -- cgit v1.2.3