Add buffer util tests

This commit is contained in:
2020-04-15 16:17:53 +02:00
parent a1f1de1b1a
commit 8c5086b15b
3 changed files with 27 additions and 0 deletions
+9
View File
@@ -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)
+9
View File
@@ -0,0 +1,9 @@
#include "gtest/gtest.h"
#include "../src/buffer_utils.hpp"
using namespace std;
TEST(BufferUtils, folder_test)
{
}
+9
View File
@@ -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();
}