Home | History | Annotate | Download | only in gtest

Lines Matching defs:Environment

396   // SetUp/TearDown method of Environment objects registered with Google
901 // An Environment object is capable of setting up and tearing down an
902 // environment. The user should subclass this to define his own
903 // environment(s).
905 // An Environment object does the set-up and tear-down in virtual
915 class Environment {
917 // The d'tor is virtual as we need to subclass Environment.
918 virtual ~Environment() {}
920 // Override this to define how to set up the environment.
923 // Override this to define how to tear down the environment.
947 // Fired before environment set-up for each iteration of tests starts.
950 // Fired after environment set-up for each iteration of tests ends.
968 // Fired before environment tear-down for each iteration of tests starts.
971 // Fired after environment tear-down for each iteration of tests ends.
1190 // Registers and returns a global test environment. When a test
1196 // The UnitTest object takes ownership of the given environment.
1199 Environment* AddEnvironment(Environment* env);
1234 friend Environment* AddGlobalTestEnvironment(Environment* env);
1269 // A convenient wrapper for adding an environment for the test
1277 // testing::Environment* const foo_env =
1287 inline Environment* AddGlobalTestEnvironment(Environment* env) {