1、合并master与2021.1

This commit is contained in:
xiejunjie
2021-12-03 11:25:35 +08:00
parent dc07b8879b
commit 4bd7d1b80b
981 changed files with 384342 additions and 6470 deletions
+17
View File
@@ -0,0 +1,17 @@
// gtest.cpp : Defines the entry point for the console application.
//V1.7.0
#include <gtest/gtest.h>
//#include <gmock/gmock.h>
//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();
}