Problem: no test infrastructure

Solution: integrate googletest, with non-cppzmq test case for a start
This commit is contained in:
Simon Giesecke
2018-03-29 17:34:21 +02:00
parent 3937983afd
commit 968473cdba
8 changed files with 146 additions and 5 deletions

7
tests/main.cpp Normal file
View File

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