diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2019-04-07 23:01:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-07 23:01:52 -0400 |
commit | f683de658776abd824b41d1c10edab8136123523 (patch) | |
tree | 0c98379dc90f803b4361e2e00250602cfd1ac6bd | |
parent | 5ba69d5cb93779fba14bf438dfdaf589e2b92071 (diff) | |
parent | dc62d1e76d7942ac54a9d43cdd9560f3b3ed8ac5 (diff) | |
download | googletest-f683de658776abd824b41d1c10edab8136123523.tar.gz googletest-f683de658776abd824b41d1c10edab8136123523.tar.bz2 googletest-f683de658776abd824b41d1c10edab8136123523.zip |
Merge pull request #2222 from Ivaylo-Kirov/patch-1
Update ForDummies.md
-rw-r--r-- | googlemock/docs/ForDummies.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/ForDummies.md b/googlemock/docs/ForDummies.md index e2a430f8..f4eba809 100644 --- a/googlemock/docs/ForDummies.md +++ b/googlemock/docs/ForDummies.md @@ -17,7 +17,7 @@ If all this seems too abstract for you, don't worry - the most important thing t Using Google Mock involves three basic steps: 1. Use some simple macros to describe the interface you want to mock, and they will expand to the implementation of your mock class; - 1. Create some mock objects and specify its expectations and behavior using an intuitive syntax; + 1. Create some mock objects and specify their expectations and behavior using an intuitive syntax; 1. Exercise code that uses the mock objects. Google Mock will catch any violation of the expectations as soon as it arises. # Why Google Mock? # |