From c875c4e2249ec124c24f72141b3780c22256fd44 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 28 Jul 2023 09:50:50 -0700 Subject: 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 ` 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 --- docs/gmock_cheat_sheet.md | 2 +- docs/gmock_cook_book.md | 2 +- docs/gmock_for_dummies.md | 6 +++--- docs/primer.md | 2 +- docs/reference/assertions.md | 2 +- googletest/README.md | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/gmock_cheat_sheet.md b/docs/gmock_cheat_sheet.md index 2fb0403..ddafaaa 100644 --- a/docs/gmock_cheat_sheet.md +++ b/docs/gmock_cheat_sheet.md @@ -20,7 +20,7 @@ class Foo { (note that `~Foo()` **must** be virtual) we can define its mock as ```cpp -#include "gmock/gmock.h" +#include class MockFoo : public Foo { public: diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index e319bf6..da10918 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -3194,7 +3194,7 @@ You can unlock this power by running your test with the `--gmock_verbose=info` flag. For example, given the test program: ```cpp -#include "gmock/gmock.h" +#include using ::testing::_; using ::testing::HasSubstr; 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 // 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 +#include using ::testing::AtLeast; // #1 diff --git a/docs/primer.md b/docs/primer.md index c3aee3c..f2a97a7 100644 --- a/docs/primer.md +++ b/docs/primer.md @@ -395,7 +395,7 @@ You can start from this boilerplate: ```c++ #include "this/package/foo.h" -#include "gtest/gtest.h" +#include namespace my { namespace project { diff --git a/docs/reference/assertions.md b/docs/reference/assertions.md index 1cdff26..aa1dbc0 100644 --- a/docs/reference/assertions.md +++ b/docs/reference/assertions.md @@ -88,7 +88,7 @@ For example, the following code verifies that the string `value1` starts with 10: ```cpp -#include "gmock/gmock.h" +#include using ::testing::AllOf; using ::testing::Gt; diff --git a/googletest/README.md b/googletest/README.md index 6bbd7f8..815f3fc 100644 --- a/googletest/README.md +++ b/googletest/README.md @@ -145,7 +145,7 @@ We list the most frequently used macros below. For a complete list, see file ### Multi-threaded Tests GoogleTest is thread-safe where the pthread library is available. After -`#include "gtest/gtest.h"`, you can check the +`#include `, you can check the `GTEST_IS_THREADSAFE` macro to see whether this is the case (yes if the macro is `#defined` to 1, no if it's undefined.). -- cgit v0.12