| 111 | } |
| 112 | |
| 113 | void verifyFile(const std::string &FilePath) { |
| 114 | ApprovalTests::Approvals::verifyExistingFile( |
| 115 | FilePath, |
| 116 | ApprovalTests::Options(ApprovalTests::AutoApproveIfMissingReporter()) |
| 117 | .withScrubber(ApprovalTests::Scrubbers::createRegexScrubber( |
| 118 | R"(UTopia v\.\d+\.\d+\.\d+)", "UTopia v[version]"))); |
| 119 | } |
| 120 | |
| 121 | void verifyFiles(const std::vector<std::string> &FilePaths) { |
| 122 | ApprovalTests::ExceptionCollector Exceptions; |
no test coverage detected