IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 50bedea5 authored by ralfulrich's avatar ralfulrich
Browse files

Merge branch '64-random-number-access-in-different-modules'

parents cc15776a 18bcc8c4
No related branches found
No related tags found
No related merge requests found
......@@ -82,4 +82,12 @@ TEST_CASE("PhysicalUnits", "[Units]") {
const auto E3 = E2 + 100_GeV + pow(10, lgE) * 1_GeV;
REQUIRE(E3 == 180_GeV);
}
SECTION("Special") {
const LengthType farAway = std::numeric_limits<double>::infinity() * meter;
REQUIRE(farAway > 100000_m);
REQUIRE_FALSE(farAway < 1e19*meter);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment