| 119 | } |
| 120 | |
| 121 | void verifyFiles(const std::vector<std::string> &FilePaths) { |
| 122 | ApprovalTests::ExceptionCollector Exceptions; |
| 123 | for (auto FilePath : FilePaths) { |
| 124 | auto Section = ApprovalTests::NamerFactory::appendToOutputFilename( |
| 125 | fs::path(FilePath).stem().string()); |
| 126 | Exceptions.gather([&]() { verifyFile(FilePath); }); |
| 127 | } |
| 128 | Exceptions.release(); |
| 129 | } |
| 130 | |
| 131 | TATestHelper::TATestHelper(std::shared_ptr<CompileHelper> Compile) |
| 132 | : Compile(Compile) {} |
no test coverage detected