diff --git a/docs/advanced.md b/docs/advanced.md index f2f8854b..aea4feec 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -926,11 +926,9 @@ class FooTest : public testing::Test { void TearDown() override { ... } // Some expensive resource shared by all tests. - static T* shared_resource_; + static T* shared_resource_ = nullptr; }; -T* FooTest::shared_resource_ = nullptr; - TEST_F(FooTest, Test1) { ... you can refer to shared_resource_ here ... }