Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Staples
a5f9726722
Merge 717e4be8edcc6810cf2a0b95ace0a4aea5d7b351 into add971c7cb497d40985b48641891bf9b51423730 2026-05-21 08:43:11 +01:00
Gabriel Staples
717e4be8ed docs/community_created_documentation.md: update links...
...to my content, as well as add a description of it.
2024-12-05 08:13:16 -07:00

View File

@ -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.