Helpers for setting up / tearing down the given environment. They are for use in the ForEach() function.
| 5692 | // Helpers for setting up / tearing down the given environment. They |
| 5693 | // are for use in the ForEach() function. |
| 5694 | static void SetUpEnvironment(Environment* env) { env->SetUp(); } |
| 5695 | static void TearDownEnvironment(Environment* env) { env->TearDown(); } |
| 5696 | |
| 5697 | // Runs all tests in this UnitTest object, prints the result, and |