Initial commit

This commit is contained in:
2025-05-21 14:26:13 +03:00
commit b33e3df329
11 changed files with 439 additions and 0 deletions

6
main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <gtest/gtest.h>
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}