mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-01 15:32:22 +02:00
11 lines
259 B
C++
11 lines
259 B
C++
#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);
|
|
}
|
|
|