| 20 | std::unique_ptr<UTLoader> Loader; |
| 21 | |
| 22 | bool load(std::string SrcDir, std::string CodePath) { |
| 23 | std::vector<std::string> CodePaths = {CodePath}; |
| 24 | return load(SrcDir, CodePaths); |
| 25 | } |
| 26 | |
| 27 | bool load(std::string SrcDir, std::vector<std::string> CodePaths) { |
| 28 | auto CH = TestHelperFactory().createCompileHelper( |
nothing calls this directly
no test coverage detected