googletest/googlemock
Hosein Ghahremanzadeh ac24edd6e0 Googletest export
Merge 4c9ef099b29d2c840c04643cd9662fd7be712f7b into 565f1b8482

Closes #2403

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/googletest/pull/2403 from IYP-Programer-Yeah:remove-compile-assert-type-equal 4c9ef099b29d2c840c04643cd9662fd7be712f7b
PiperOrigin-RevId: 268681883
2019-09-12 12:10:41 -04:00
..
cmake Googletest export 2018-12-13 16:00:11 -05:00
docs Googletest export 2019-09-09 13:40:40 -04:00
include/gmock Googletest export 2019-09-12 12:10:41 -04:00
scripts fix broken links 2019-08-06 20:20:50 +02:00
src fix typos 2019-07-30 12:52:27 +02:00
test Googletest export 2019-09-12 12:10:41 -04:00
CMakeLists.txt Use -Wa,-mbig-obj for Cygwin/MinGW always 2019-08-11 21:10:06 +02:00
CONTRIBUTORS move googlemock files into googlemock/ subdir 2015-08-25 17:47:18 -04:00
LICENSE move googlemock files into googlemock/ subdir 2015-08-25 17:47:18 -04:00
README.md Merge pull request #2353 from anttsov:patch-1 2019-08-02 11:32:15 -04:00

Googletest Mocking (gMock) Framework

Overview

Google's framework for writing and using C++ mock classes. It can help you derive better designs of your system and write better tests.

It is inspired by:

and designed with C++'s specifics in mind.

gMock:

  • 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, and
  • is easy to learn and use.

Details and examples can be found here:

Please note that code under scripts/generator/ is from the cppclean project and under the Apache License, which is different from Google Mock's license.

Google Mock is a part of Google Test C++ testing framework and a subject to the same requirements.