29#include <gtest/gtest.h>
35 virtual void TearDown();
40GlobalTestEnvironment::~GlobalTestEnvironment()
44void GlobalTestEnvironment::SetUp()
49void GlobalTestEnvironment::TearDown()
54::testing::Environment*
const globalEnvironment = ::testing::AddGlobalTestEnvironment(
new GlobalTestEnvironment);
56int main(
int argc,
char **argv) {
57 ::testing::InitGoogleTest(&argc, argv);
58 return RUN_ALL_TESTS();