2019-07-16 14:38:15 -04:00
|
|
|
# Googletest Mocking (gMock) Framework
|
2010-04-14 16:26:57 +00:00
|
|
|
|
2019-07-16 14:38:15 -04:00
|
|
|
### Overview
|
2008-12-10 05:08:54 +00:00
|
|
|
|
2019-07-16 14:38:15 -04:00
|
|
|
Google's framework for writing and using C++ mock classes. It can help you
|
|
|
|
derive better designs of your system and write better tests.
|
2015-08-30 12:36:37 -04:00
|
|
|
|
|
|
|
It is inspired by:
|
|
|
|
|
2020-05-05 17:07:05 -04:00
|
|
|
* [jMock](http://www.jmock.org/)
|
2023-08-23 09:30:13 -07:00
|
|
|
* [EasyMock](https://easymock.org/)
|
2023-08-22 20:58:34 +03:00
|
|
|
* [Hamcrest](https://code.google.com/p/hamcrest/)
|
2015-08-30 12:36:37 -04:00
|
|
|
|
2020-05-05 17:07:05 -04:00
|
|
|
It is designed with C++'s specifics in mind.
|
2015-08-30 12:36:37 -04:00
|
|
|
|
2019-07-16 14:38:15 -04:00
|
|
|
gMock:
|
|
|
|
|
2020-05-05 17:07:05 -04:00
|
|
|
- Provides a declarative syntax for defining mocks.
|
|
|
|
- Can define partial (hybrid) mocks, which are a cross of real and mock
|
|
|
|
objects.
|
|
|
|
- Handles functions of arbitrary types and overloaded functions.
|
|
|
|
- Comes with a rich set of matchers for validating function arguments.
|
|
|
|
- Uses an intuitive syntax for controlling the behavior of a mock.
|
|
|
|
- Does automatic verification of expectations (no record-and-replay needed).
|
|
|
|
- Allows arbitrary (partial) ordering constraints on function calls to be
|
|
|
|
expressed.
|
|
|
|
- Lets a user extend it by defining new matchers and actions.
|
|
|
|
- Does not use exceptions.
|
|
|
|
- Is easy to learn and use.
|
2019-07-16 14:38:15 -04:00
|
|
|
|
2019-07-30 10:17:22 +03:00
|
|
|
Details and examples can be found here:
|
|
|
|
|
2021-03-09 17:08:31 -08:00
|
|
|
* [gMock for Dummies](https://google.github.io/googletest/gmock_for_dummies.html)
|
|
|
|
* [Legacy gMock FAQ](https://google.github.io/googletest/gmock_faq.html)
|
|
|
|
* [gMock Cookbook](https://google.github.io/googletest/gmock_cook_book.html)
|
|
|
|
* [gMock Cheat Sheet](https://google.github.io/googletest/gmock_cheat_sheet.html)
|
2019-07-30 10:17:22 +03:00
|
|
|
|
2020-09-16 01:33:41 +09:00
|
|
|
GoogleMock is a part of
|
2023-08-22 20:58:34 +03:00
|
|
|
[GoogleTest C++ testing framework](https://github.com/google/googletest/) and a
|
2019-07-16 14:38:15 -04:00
|
|
|
subject to the same requirements.
|