Finished refactoring sf-buffer

This commit is contained in:
2020-05-20 12:22:20 +02:00
parent b45b7d17fa
commit 6d210ed702
18 changed files with 1468 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "gtest/gtest.h"
#include "test_UdpReceiver.cpp"
#include "test_BufferBinaryWriter.cpp"
#include "test_BufferH5Writer.cpp"
#include "test_BufferUdpReceiver.cpp"
using namespace std;
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}