Add test stub for BinaryReader

This commit is contained in:
2020-07-20 10:32:30 +02:00
parent 376469b41c
commit b26f0f1600
2 changed files with 12 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <BinaryReader.hpp>
#include "gtest/gtest.h"
TEST(BinaryReader, basic_interaction) {
// TODO: Write some real tests.
auto detector_folder = "test_device";
auto module_name = "M1";
BinaryReader reader(detector_folder, module_name);
}