Add tests for checking data types

This commit is contained in:
2018-07-03 17:10:12 +02:00
parent 44e6ea18b3
commit 651895860d
2 changed files with 19 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "gtest/gtest.h"
#include "test_ZmqReceiver.cpp"
using namespace std;
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}