summaryrefslogtreecommitdiffstats
path: root/docs/gmock_for_dummies.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2023-07-28 16:50:50 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-07-28 16:51:41 (GMT)
commitc875c4e2249ec124c24f72141b3780c22256fd44 (patch)
treeefb5d77f7bec39628f9f77632ce5913de47a33fd /docs/gmock_for_dummies.md
parent40412d85124f7c6f3d88454583c4633e5e10fc8c (diff)
downloadgoogletest-c875c4e2249ec124c24f72141b3780c22256fd44.zip
googletest-c875c4e2249ec124c24f72141b3780c22256fd44.tar.gz
googletest-c875c4e2249ec124c24f72141b3780c22256fd44.tar.bz2
Adjust includes to use <> instead of "", consistent with quickstart pages.
Right now, gtest documentation uses different #include syntax. The quickstart pages (e.g., http://google.github.io/googletest/quickstart-bazel.html#create-and-run-a-binary) are checked in with `#include <gtest/gtest.h>` However, other documentation (such as the primer) uses `#include "gtest/gtest.h"` (e.g., https://google.github.io/googletest/primer.html#writing-the-main-function). PiperOrigin-RevId: 551878641 Change-Id: Iab93cc1da3ef4870a07b624071b75d6e9d3568c1
Diffstat (limited to 'docs/gmock_for_dummies.md')
-rw-r--r--docs/gmock_for_dummies.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/gmock_for_dummies.md b/docs/gmock_for_dummies.md
index b7264d3..43f907a 100644
--- a/docs/gmock_for_dummies.md
+++ b/docs/gmock_for_dummies.md
@@ -164,7 +164,7 @@ follow:
After the process, you should have something like:
```cpp
-#include "gmock/gmock.h" // Brings in gMock.
+#include <gmock/gmock.h> // Brings in gMock.
class MockTurtle : public Turtle {
public:
@@ -224,8 +224,8 @@ Here's an example:
```cpp
#include "path/to/mock-turtle.h"
-#include "gmock/gmock.h"
-#include "gtest/gtest.h"
+#include <gmock/gmock.h>
+#include <gtest/gtest.h>
using ::testing::AtLeast; // #1