Add support for running gtest

This commit is contained in:
Thad House
2020-07-07 17:17:19 -07:00
parent 3f9359c031
commit 29ba09947c
4 changed files with 44 additions and 4 deletions

View File

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