Merge pull request #2338 from kuzkry:environment-documentation

PiperOrigin-RevId: 260559531
This commit is contained in:
Gennadiy Civil 2019-07-29 16:43:23 -04:00
commit c205468b65

View File

@ -1222,15 +1222,15 @@ First, you subclass the `::testing::Environment` class to define a test
environment, which knows how to set-up and tear-down:
```c++
class Environment {
class Environment : public ::testing::Environment {
public:
virtual ~Environment() {}
// Override this to define how to set up the environment.
virtual void SetUp() {}
void SetUp() override {}
// Override this to define how to tear down the environment.
virtual void TearDown() {}
void TearDown() override {}
};
```