#include #include TEST(gtest, helloworld) { std::cout << "Hello world!" << std::endl; // Google Test will also provide macros for assertions. ASSERT_EQ(1+1, 2); } int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }