From 717e4be8edcc6810cf2a0b95ace0a4aea5d7b351 Mon Sep 17 00:00:00 2001 From: Gabriel Staples Date: Thu, 5 Dec 2024 08:13:16 -0700 Subject: [PATCH] docs/community_created_documentation.md: update links... ...to my content, as well as add a description of it. --- docs/community_created_documentation.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/community_created_documentation.md b/docs/community_created_documentation.md index 4569075f..2632ed3e 100644 --- a/docs/community_created_documentation.md +++ b/docs/community_created_documentation.md @@ -3,5 +3,6 @@ The following is a list, in no particular order, of links to documentation created by the Googletest community. -* [Googlemock Insights](https://github.com/ElectricRCAircraftGuy/eRCaGuy_dotfiles/blob/master/googletest/insights.md), - by [ElectricRCAircraftGuy](https://github.com/ElectricRCAircraftGuy) +* [Googlemock Insights](https://github.com/ElectricRCAircraftGuy/eRCaGuy_dotfiles/blob/master/googletest/insights.md), by [Gabriel Staples](https://www.linkedin.com/in/gabriel-staples/) ([ElectricRCAircraftGuy](https://github.com/ElectricRCAircraftGuy)) + + This covers some of the more nuanced features such as using multiple `EXPECT_CALL()`s, and using `.WillRepeatedly(InvokeWithoutArgs([&callCounter](){ callCounter++; }));` to count the number of times a mock function is called between each call when doing successive calls of the function under test.