googletest/docs/community_created_documentation.md
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

708 B

Community-Created Documentation

The following is a list, in no particular order, of links to documentation created by the Googletest community.

  • Googlemock Insights, by Gabriel Staples (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.