aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/ForDummies.md
diff options
context:
space:
mode:
authorJosh Bodily <joshbodily@gmail.com>2017-08-16 10:56:43 -0600
committerGitHub <noreply@github.com>2017-08-16 10:56:43 -0600
commit960de7151241c2140b32c171298444cc07de1325 (patch)
treed7c7f675e630f92c2dfbc7fea3405dce8e63e72e /googlemock/docs/ForDummies.md
parent713b0778709ba8ba2f8e437f0bbba16d57de7137 (diff)
parent5ed471caec6f341018707e74e0dc41201fb59edd (diff)
downloadgoogletest-960de7151241c2140b32c171298444cc07de1325.tar.gz
googletest-960de7151241c2140b32c171298444cc07de1325.tar.bz2
googletest-960de7151241c2140b32c171298444cc07de1325.zip
Merge branch 'master' into josh/fix_scoped_class2
Diffstat (limited to 'googlemock/docs/ForDummies.md')
-rw-r--r--googlemock/docs/ForDummies.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/ForDummies.md b/googlemock/docs/ForDummies.md
index 892f1be6..0bf528e9 100644
--- a/googlemock/docs/ForDummies.md
+++ b/googlemock/docs/ForDummies.md
@@ -23,8 +23,8 @@ Using Google Mock involves three basic steps:
# Why Google Mock? #
While mock objects help you remove unnecessary dependencies in tests and make them fast and reliable, using mocks manually in C++ is _hard_:
- * Someone has to implement the mocks. The job is usually tedious and error-prone. No wonder people go great distance to avoid it.
- * The quality of those manually written mocks is a bit, uh, unpredictable. You may see some really polished ones, but you may also see some that were hacked up in a hurry and have all sorts of ad hoc restrictions.
+ * Someone has to implement the mocks. The job is usually tedious and error-prone. No wonder people go great distances to avoid it.
+ * The quality of those manually written mocks is a bit, uh, unpredictable. You may see some really polished ones, but you may also see some that were hacked up in a hurry and have all sorts of ad-hoc restrictions.
* The knowledge you gained from using one mock doesn't transfer to the next.
In contrast, Java and Python programmers have some fine mock frameworks, which automate the creation of mocks. As a result, mocking is a proven effective technique and widely adopted practice in those communities. Having the right tool absolutely makes the difference.