initial commit

This commit is contained in:
2022-04-22 23:42:48 +02:00
commit 4e31c21500
7 changed files with 82 additions and 0 deletions

10
tests/test.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <gtest/gtest.h> // googletest header file
TEST(StrCompare, CStrNotEqual) {
EXPECT_EQ(1, 1);
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}