| 117 | }; |
| 118 | |
| 119 | inline const char* plural(size_t count, const char* suffix) |
| 120 | { |
| 121 | if (count == 1) |
| 122 | return ""; |
| 123 | return suffix; |
| 124 | } |
| 125 | |
| 126 | void registerCPUTest(std::filesystem::path path, std::string name, unittest::Options options, CPUTestFunc func) |
| 127 | { |
no outgoing calls
no test coverage detected