clang-format

This commit is contained in:
2025-10-01 20:20:29 +02:00
parent d3d9f760b3
commit 1f46266183
6 changed files with 315 additions and 236 deletions

View File

@@ -224,12 +224,14 @@ TEST_CASE("Parse a master file in .raw format", "[.integration]") {
// Packets Caught Mask : 64 bytes
}
TEST_CASE("Parse a master file in new .json format", "[.integration][.width-data]") {
TEST_CASE("Parse a master file in new .json format",
"[.integration][.width-data]") {
auto file_path = test_data_path() / "raw" / "newmythen03" / "run_87_master_0.json";
auto file_path =
test_data_path() / "raw" / "newmythen03" / "run_87_master_0.json";
REQUIRE(std::filesystem::exists(file_path));
RawMasterFile f(file_path);
RawMasterFile f(file_path);
// Version : 8.0
REQUIRE(f.version() == "8.0");
@@ -245,7 +247,7 @@ TEST_CASE("Parse a master file in new .json format", "[.integration][.width-data
REQUIRE(f.scan_parameters().enabled() == false);
REQUIRE(f.scan_parameters().dac() == DACIndex::DAC_0);
REQUIRE(f.scan_parameters().start() == 0);
REQUIRE(f.scan_parameters().start() == 0);
REQUIRE(f.scan_parameters().stop() == 0);
REQUIRE(f.scan_parameters().step() == 0);
REQUIRE(f.scan_parameters().settleTime() == 0);
@@ -326,4 +328,3 @@ TEST_CASE("Read eiger master file", "[.integration]") {
// }
// }
}