mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-21 06:14:35 +02:00
21 lines
567 B
C++
21 lines
567 B
C++
#include "gtest/gtest.h"
|
|
#include "test_UdpReceiver.cpp"
|
|
#include "test_UdpRecvModule.cpp"
|
|
#include "test_BufferBinaryWriter.cpp"
|
|
#include "test_buffer_utils.cpp"
|
|
#include "test_BufferH5Writer.cpp"
|
|
#include "test_ReplayH5Reader.cpp"
|
|
#include "test_WriterH5Writer.cpp"
|
|
#include "test_FastQueue.cpp"
|
|
#include "test_LiveRecvModule.cpp"
|
|
#include "test_BufferUdpReceiver.cpp"
|
|
#include "test_bitshuffle.cpp"
|
|
#include "test_WriterZmqReceiver.cpp"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|