add deps directory

update inner include headers
This commit is contained in:
yangwei
2022-07-06 23:18:13 +08:00
parent 4ca8c002ee
commit 658108724c
34 changed files with 3567 additions and 12 deletions

14
test/gtest_main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include <gtest/gtest.h>
TEST(EQ_Test, Always_True) {
EXPECT_EQ(1, 1);
}
int main(int argc, char ** argv)
{
int ret=0;
::testing::InitGoogleTest(&argc, argv);
ret=RUN_ALL_TESTS();
return ret;
}