mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-12-27 06:31:19 +01:00
8 lines
219 B
C++
8 lines
219 B
C++
#include "Module.h"
|
|
#include "catch.hpp"
|
|
|
|
using dt = slsDetectorDefs::detectorType;
|
|
TEST_CASE("Construction with a defined detector type") {
|
|
sls::Module m(dt::EIGER);
|
|
REQUIRE(m.getDetectorType() == dt::EIGER);
|
|
} |