Helpers for setting up / tearing down the given environment. They are for use in the ForEach() function.
| 6643 | // Helpers for setting up / tearing down the given environment. They |
| 6644 | // are for use in the ForEach() function. |
| 6645 | static void SetUpEnvironment(Environment* env) { env->SetUp(); } |
| 6646 | static void TearDownEnvironment(Environment* env) { env->TearDown(); } |
| 6647 | |
| 6648 | // Runs all tests in this UnitTest object, prints the result, and |