aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/README.md
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-06-11 11:26:16 -0400
committerGennadiy Civil <misterg@google.com>2018-06-11 11:26:16 -0400
commitde47b0d30c1d2a2072eb1c2a2e852d6aaa028931 (patch)
treee3b480f265889cb79488e15ea02feb48f8893bf3 /googlemock/README.md
parent98a0d007d7092b72eea0e501bb9ad17908a1a036 (diff)
downloadgoogletest-de47b0d30c1d2a2072eb1c2a2e852d6aaa028931.tar.gz
googletest-de47b0d30c1d2a2072eb1c2a2e852d6aaa028931.tar.bz2
googletest-de47b0d30c1d2a2072eb1c2a2e852d6aaa028931.zip
Rename "Primer.md" to "primer.md" and adjust links. Part of the documentaion rationalzation
Diffstat (limited to 'googlemock/README.md')
-rw-r--r--googlemock/README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/googlemock/README.md b/googlemock/README.md
index 1170cfab..ad374dea 100644
--- a/googlemock/README.md
+++ b/googlemock/README.md
@@ -53,7 +53,7 @@ the Apache License, which is different from Google Mock's license.
If you are new to the project, we suggest that you read the user
documentation in the following order:
- * Learn the [basics](../../master/googletest/docs/Primer.md) of
+ * Learn the [basics](../../master/googletest/docs/primer.md) of
Google Test, if you choose to use Google Mock with it (recommended).
* Read [Google Mock for Dummies](../../master/googlemock/docs/ForDummies.md).
* Read the instructions below on how to build Google Mock.
@@ -129,20 +129,20 @@ build Google Mock and its tests, which has further requirements:
If you have CMake available, it is recommended that you follow the
[build instructions][gtest_cmakebuild]
-as described for Google Test.
+as described for Google Test.
If are using Google Mock with an
existing CMake project, the section
[Incorporating Into An Existing CMake Project][gtest_incorpcmake]
-may be of particular interest.
-To make it work for Google Mock you will need to change
+may be of particular interest.
+To make it work for Google Mock you will need to change
target_link_libraries(example gtest_main)
-to
+to
target_link_libraries(example gmock_main)
-
+
This works because `gmock_main` library is compiled with Google Test.
However, it does not automatically add Google Test includes.
Therefore you will also have to change
@@ -161,8 +161,8 @@ to
"${gtest_SOURCE_DIR}/include" "${gmock_SOURCE_DIR}/include")
endif()
-This will addtionally mark Google Mock includes as system, which will
-silence compiler warnings when compiling your tests using clang with
+This will addtionally mark Google Mock includes as system, which will
+silence compiler warnings when compiling your tests using clang with
`-Wpedantic -Wall -Wextra -Wconversion`.