From 07762640edf03260b9f170e06a2e4b74da1cc358 Mon Sep 17 00:00:00 2001 From: Felix Riehn <felix@matilda> Date: Fri, 20 Jan 2023 18:35:12 +0100 Subject: [PATCH] added test case for invalid interaction --- tests/modules/testSophia.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/modules/testSophia.cpp b/tests/modules/testSophia.cpp index da8bc633b..8043ddbcb 100644 --- a/tests/modules/testSophia.cpp +++ b/tests/modules/testSophia.cpp @@ -118,6 +118,7 @@ TEST_CASE("SophiaInterface", "modules") { FourMomentum const aP4(100_GeV, {cs, 99_GeV, 0_GeV, 0_GeV}); FourMomentum const bP4(1_GeV, {cs, 0_GeV, 0_GeV, 0_GeV}); CHECK(0_mb == model.getCrossSection(Code::Photon, Code::Proton, aP4, bP4)); + CHECK_THROWS(model.doInteraction(view, Code::Electron, Code::Proton, aP4, bP4)); } SECTION("InteractionInterface - interaction") { -- GitLab