Add gtest, as separate set of tests (that just follow the ad-hoc tests that already exist)

This commit is contained in:
Jesse Beder
2014-03-22 19:06:46 -05:00
parent 32125697f2
commit db82302ed0
182 changed files with 141114 additions and 4 deletions

View File

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