exptime of gates

This commit is contained in:
Erik Frojdh
2020-05-20 09:36:43 +02:00
parent 6d71d6cf9f
commit 761f93d753
4 changed files with 14 additions and 11 deletions

View File

@ -232,3 +232,9 @@ TEST_CASE("Streaming of slsDetectorDefs::ROI") {
REQUIRE(oss.str() == "[-10, 1]");
}
TEST_CASE("std::array"){
std::array<int, 3> arr{4,6,7};
REQUIRE(ToString(arr) == "[4, 6, 7]");
}