summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md')
-rw-r--r--3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md b/3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md
index 2ed43007627..ee03c5b9890 100644
--- a/3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md
+++ b/3rdparty/googletest/googlemock/docs/v1_7/ForDummies.md
@@ -44,7 +44,7 @@ We encourage you to use Google Mock as:
* a _testing_ tool to cut your tests' outbound dependencies and probe the interaction between your module and its collaborators.
# Getting Started #
-Using Google Mock is easy! Inside your C++ source file, just #include `"gtest/gtest.h"` and `"gmock/gmock.h"`, and you are ready to go.
+Using Google Mock is easy! Inside your C++ source file, just `#include` `"gtest/gtest.h"` and `"gmock/gmock.h"`, and you are ready to go.
# A Case for Mock Turtles #
Let's look at an example. Suppose you are developing a graphics program that relies on a LOGO-like API for drawing. How would you test that it does the right thing? Well, you can run it and compare the screen with a golden screen snapshot, but let's admit it: tests like this are expensive to run and fragile (What if you just upgraded to a shiny new graphics card that has better anti-aliasing? Suddenly you have to update all your golden images.). It would be too painful if all your tests are like this. Fortunately, you learned about Dependency Injection and know the right thing to do: instead of having your application talk to the drawing API directly, wrap the API in an interface (say, `Turtle`) and code to that interface: