diff --git a/docs/reference/assertions.md b/docs/reference/assertions.md index aa1dbc04..492ff5ef 100644 --- a/docs/reference/assertions.md +++ b/docs/reference/assertions.md @@ -1,7 +1,7 @@ # Assertions Reference This page lists the assertion macros provided by GoogleTest for verifying code -behavior. To use them, include the header `gtest/gtest.h`. +behavior. To use them, add `#include `. The majority of the macros listed below come as a pair with an `EXPECT_` variant and an `ASSERT_` variant. Upon failure, `EXPECT_` macros generate nonfatal diff --git a/docs/reference/mocking.md b/docs/reference/mocking.md index e414ffbd..ab37ebf3 100644 --- a/docs/reference/mocking.md +++ b/docs/reference/mocking.md @@ -1,8 +1,7 @@ # Mocking Reference This page lists the facilities provided by GoogleTest for creating and working -with mock objects. To use them, include the header -`gmock/gmock.h`. +with mock objects. To use them, add `#include `. ## Macros {#macros} diff --git a/docs/reference/testing.md b/docs/reference/testing.md index 17225a68..ead66b36 100644 --- a/docs/reference/testing.md +++ b/docs/reference/testing.md @@ -3,7 +3,7 @@ This page lists the facilities provided by GoogleTest for writing test programs. -To use them, include the header `gtest/gtest.h`. +To use them, add `#include `. ## Macros