mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 23:10:02 +02: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);
|
|
} |