Home | History | Annotate | Download | only in gtest

Lines Matching defs:Environment

286 // Environment variable utilities:
287 // GetEnv() - gets the value of an environment variable.
288 // BoolFromGTestEnv() - parses a bool environment variable.
289 // Int32FromGTestEnv() - parses an Int32 environment variable.
290 // StringFromGTestEnv() - parses a string environment variable.
2901 // We are on Windows CE, which has no environment variables.
2904 // Environment variables which we programmatically clear will be set to the
3013 // Utilities for command line flags and environment variables.
3040 // TODO(chandlerc): Find a better way to refactor flag and environment parsing
3045 // Parses a bool/Int32/string from the environment variable
3456 // environment variable. On GNU platform this method uses wcscasecmp
8255 // the appropriate environment for a child process to execute the death
17810 // SetUp/TearDown method of Environment objects registered with Google
18340 // An Environment object is capable of setting up and tearing down an
18341 // environment. The user should subclass this to define his own
18342 // environment(s).
18344 // An Environment object does the set-up and tear-down in virtual
18354 class Environment {
18356 // The d'tor is virtual as we need to subclass Environment.
18357 virtual ~Environment() {}
18359 // Override this to define how to set up the environment.
18362 // Override this to define how to tear down the environment.
18386 // Fired before environment set-up for each iteration of tests starts.
18389 // Fired after environment set-up for each iteration of tests ends.
18407 // Fired before environment tear-down for each iteration of tests starts.
18410 // Fired after environment tear-down for each iteration of tests ends.
18635 // Registers and returns a global test environment. When a test
18641 // The UnitTest object takes ownership of the given environment.
18644 Environment* AddEnvironment(Environment* env);
18679 friend Environment* AddGlobalTestEnvironment(Environment* env);
18714 // A convenient wrapper for adding an environment for the test
18722 // testing::Environment* const foo_env =
18732 inline Environment* AddGlobalTestEnvironment(Environment* env) {