Home | History | Annotate | Download | only in gtest

Lines Matching defs:Environment

261 // Environment variable utilities:
262 // GetEnv() - gets the value of an environment variable.
263 // BoolFromGTestEnv() - parses a bool environment variable.
264 // Int32FromGTestEnv() - parses an Int32 environment variable.
265 // StringFromGTestEnv() - parses a string environment variable.
2427 // We are on Windows CE, which has no environment variables.
2430 // Environment variables which we programmatically clear will be set to the
2522 // Utilities for command line flags and environment variables.
2545 // TODO(chandlerc): Find a better way to refactor flag and environment parsing
2550 // Parses a bool/Int32/string from the environment variable
2743 // environment variable. On GNU platform this method uses wcscasecmp
7450 // the appropriate environment for a child process to execute the death
16409 // An Environment object is capable of setting up and tearing down an
16410 // environment. The user should subclass this to define his own
16411 // environment(s).
16413 // An Environment object does the set-up and tear-down in virtual
16423 class Environment {
16425 // The d'tor is virtual as we need to subclass Environment.
16426 virtual ~Environment() {}
16428 // Override this to define how to set up the environment.
16431 // Override this to define how to tear down the environment.
16455 // Fired before environment set-up for each iteration of tests starts.
16458 // Fired after environment set-up for each iteration of tests ends.
16476 // Fired before environment tear-down for each iteration of tests starts.
16479 // Fired after environment tear-down for each iteration of tests ends.
16687 // Registers and returns a global test environment. When a test
16693 // The UnitTest object takes ownership of the given environment.
16696 Environment* AddEnvironment(Environment* env);
16725 friend Environment* AddGlobalTestEnvironment(Environment* env);
16758 // A convenient wrapper for adding an environment for the test
16766 // testing::Environment* const foo_env =
16776 inline Environment* AddGlobalTestEnvironment(Environment* env) {