// gtest.cpp : Defines the entry point for the console application. //V1.7.0 #include //#include //using ::testing::AtLeast; int main(int argc, char **argv) { #ifdef __COVERAGESCANNER__ __coveragescanner_install(argv[0]); #endif // testing::InitGoogleMock(&argc, argv); testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }