s/::testing::/testing::/ in test documentation outside of using statements to align with best practice
PiperOrigin-RevId: 574377544 Change-Id: I0ca69a3bf14cc1aab75784eba220a48bf50cef04
This commit is contained in:
parent
829c19901d
commit
9bb354fa83
@ -210,7 +210,7 @@ objects for several different tests.
|
|||||||
|
|
||||||
To create a fixture:
|
To create a fixture:
|
||||||
|
|
||||||
1. Derive a class from `::testing::Test` . Start its body with `protected:`, as
|
1. Derive a class from `testing::Test` . Start its body with `protected:`, as
|
||||||
we'll want to access fixture members from sub-classes.
|
we'll want to access fixture members from sub-classes.
|
||||||
2. Inside the class, declare any objects you plan to use.
|
2. Inside the class, declare any objects you plan to use.
|
||||||
3. If necessary, write a default constructor or `SetUp()` function to prepare
|
3. If necessary, write a default constructor or `SetUp()` function to prepare
|
||||||
@ -271,7 +271,7 @@ First, define a fixture class. By convention, you should give it the name
|
|||||||
`FooTest` where `Foo` is the class being tested.
|
`FooTest` where `Foo` is the class being tested.
|
||||||
|
|
||||||
```c++
|
```c++
|
||||||
class QueueTest : public ::testing::Test {
|
class QueueTest : public testing::Test {
|
||||||
protected:
|
protected:
|
||||||
void SetUp() override {
|
void SetUp() override {
|
||||||
// q0_ remains empty
|
// q0_ remains empty
|
||||||
@ -402,7 +402,7 @@ namespace project {
|
|||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
// The fixture for testing class Foo.
|
// The fixture for testing class Foo.
|
||||||
class FooTest : public ::testing::Test {
|
class FooTest : public testing::Test {
|
||||||
protected:
|
protected:
|
||||||
// You can remove any or all of the following functions if their bodies would
|
// You can remove any or all of the following functions if their bodies would
|
||||||
// be empty.
|
// be empty.
|
||||||
@ -450,14 +450,14 @@ TEST_F(FooTest, DoesXyz) {
|
|||||||
} // namespace my
|
} // namespace my
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
::testing::InitGoogleTest(&argc, argv);
|
testing::InitGoogleTest(&argc, argv);
|
||||||
return RUN_ALL_TESTS();
|
return RUN_ALL_TESTS();
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The `::testing::InitGoogleTest()` function parses the command line for
|
The `testing::InitGoogleTest()` function parses the command line for GoogleTest
|
||||||
GoogleTest flags, and removes all recognized flags. This allows the user to
|
flags, and removes all recognized flags. This allows the user to control a test
|
||||||
control a test program's behavior via various flags, which we'll cover in the
|
program's behavior via various flags, which we'll cover in the
|
||||||
[AdvancedGuide](advanced.md). You **must** call this function before calling
|
[AdvancedGuide](advanced.md). You **must** call this function before calling
|
||||||
`RUN_ALL_TESTS()`, or the flags won't be properly initialized.
|
`RUN_ALL_TESTS()`, or the flags won't be properly initialized.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user