summaryrefslogtreecommitdiff
path: root/googlemock/README.md
diff options
context:
space:
mode:
authorvslashg <gfalcon@google.com>2020-05-05 17:07:05 -0400
committervslashg <gfalcon@google.com>2020-05-05 17:07:05 -0400
commit1a9c3e4414073b1bab87379f7cf5b093c67dfb19 (patch)
treec7c3a748c2da4893bfefad4911b1af1bef55aa40 /googlemock/README.md
parenta9f6c1ed1401dd9b002d4c43fb9f946d2c7466d0 (diff)
parent4bab55dc54b4686428b6646a952977e6f10d1613 (diff)
downloadgoogletest-git-1a9c3e4414073b1bab87379f7cf5b093c67dfb19.tar.gz
Merge pull request #2830 from keshavgbpecdelhi:patch-1
PiperOrigin-RevId: 309951872
Diffstat (limited to 'googlemock/README.md')
-rw-r--r--googlemock/README.md32
1 files changed, 16 insertions, 16 deletions
diff --git a/googlemock/README.md b/googlemock/README.md
index 183fdb81..11414f9c 100644
--- a/googlemock/README.md
+++ b/googlemock/README.md
@@ -7,26 +7,26 @@ derive better designs of your system and write better tests.
It is inspired by:
-* [jMock](http://www.jmock.org/),
-* [EasyMock](http://www.easymock.org/), and
-* [Hamcrest](http://code.google.com/p/hamcrest/),
+* [jMock](http://www.jmock.org/)
+* [EasyMock](http://www.easymock.org/)
+* [Hamcrest](http://code.google.com/p/hamcrest/)
-and designed with C++'s specifics in mind.
+It is 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.
+- 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.
Details and examples can be found here: