Files
slsDetectorPackage/slsDetectorSoftware/tests/Caller/test-Caller-xilinx-chiptestboard.cpp
T
maliakal_d 7621d964cd
Build on RHEL9 docker image / build (push) Failing after 28s
Build on RHEL8 docker image / build (push) Failing after 53s
configtransceiver is removed
2026-03-13 16:59:28 +01:00

30 lines
723 B
C++

// SPDX-License-Identifier: LGPL-3.0-or-other
// Copyright (C) 2021 Contributors to the SLS Detector Package
#include "Caller.h"
#include "catch.hpp"
#include "sls/Detector.h"
#include "sls/sls_detector_defs.h"
#include <sstream>
#include "sls/Result.h"
#include "sls/ToString.h"
#include "sls/versionAPI.h"
#include "test-Caller-global.h"
#include "tests/globals.h"
namespace sls {
using test::GET;
using test::PUT;
/* dacs */
// not implemented at the moment
TEST_CASE("configtransceiver", "[.detectorintegration]") {
Detector det;
Caller caller(&det);
REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, PUT));
REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, GET));
}
} // namespace sls