Add unit test project to VS

This commit is contained in:
Megamouse
2025-04-29 21:09:12 +02:00
parent b1b9310a50
commit 376ac85029
8 changed files with 166 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <gtest/gtest.h>
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}