Home | History | Annotate | Download | only in gtest

Lines Matching defs:Environment

420   // SetUp/TearDown method of Environment objects registered with Google
958 // An Environment object is capable of setting up and tearing down an
959 // environment. You should subclass this to define your own
960 // environment(s).
962 // An Environment object does the set-up and tear-down in virtual
972 class Environment {
974 // The d'tor is virtual as we need to subclass Environment.
975 virtual ~Environment() {}
977 // Override this to define how to set up the environment.
980 // Override this to define how to tear down the environment.
1004 // Fired before environment set-up for each iteration of tests starts.
1007 // Fired after environment set-up for each iteration of tests ends.
1025 // Fired before environment tear-down for each iteration of tests starts.
1028 // Fired after environment tear-down for each iteration of tests ends.
1253 // Registers and returns a global test environment. When a test
1259 // The UnitTest object takes ownership of the given environment.
1262 Environment* AddEnvironment(Environment* env);
1297 friend Environment* AddGlobalTestEnvironment(Environment* env);
1332 // A convenient wrapper for adding an environment for the test
1340 // testing::Environment* const foo_env =
1350 inline Environment* AddGlobalTestEnvironment(Environment* env) {