mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-29 20:12:22 +02:00
Add buffer util tests
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
add_executable(sf-buffer_tests test_main.cpp)
|
||||
|
||||
target_link_libraries(sf-buffer_tests
|
||||
core-writer
|
||||
gtest
|
||||
zmq
|
||||
hdf5
|
||||
hdf5_hl
|
||||
hdf5_cpp)
|
||||
@@ -0,0 +1,9 @@
|
||||
#include "gtest/gtest.h"
|
||||
#include "../src/buffer_utils.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
TEST(BufferUtils, folder_test)
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
#include "gtest/gtest.h"
|
||||
#include "test_buffer_utils.cpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
Reference in New Issue
Block a user