| 345 | |
| 346 | template<typename... Args> |
| 347 | void applyArgs(Options& options, Args&&... args) |
| 348 | { |
| 349 | (applyArg(options, std::forward<Args>(args)), ...); |
| 350 | } |
| 351 | |
| 352 | FALCOR_API void registerCPUTest(std::filesystem::path path, std::string name, unittest::Options options, CPUTestFunc func); |
| 353 | FALCOR_API void registerGPUTest(std::filesystem::path path, std::string name, unittest::Options options, GPUTestFunc func); |
nothing calls this directly
no test coverage detected