Rename test to follow class rename

This commit is contained in:
2020-05-15 12:03:09 +02:00
parent e6c3e65200
commit cd2b318783
2 changed files with 3 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "WriterH5Writer.hpp"
#include "gtest/gtest.h"
using namespace core_buffer;
TEST(WriterH5Writer, basic_interaction)
{
size_t n_modules = 2;
size_t n_frames = 5;
auto data = make_unique<char[]>(n_modules*MODULE_N_BYTES);
auto metadata = make_shared<ImageMetadata>();
WriterH5Writer writer("ignore.h5", n_frames, n_modules);
writer.write(metadata.get(), data.get());
writer.close_file();
// TODO: Write some test.
}