Make core-buffer folder with all common stuff used in the buffer

This commit is contained in:
2020-04-17 09:51:16 +02:00
parent ed774b1817
commit f7dc2be75f
15 changed files with 33 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "gtest/gtest.h"
#include "test_UdpReceiver.cpp"
#include "test_UdpRecvModule.cpp"
#include "test_buffer_utils.cpp"
using namespace std;
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}