| 5140 | |
| 5141 | |
| 5142 | void printTests(ConcurrentQueueTests const& tests) |
| 5143 | { |
| 5144 | std::printf(" Supported tests are:\n"); |
| 5145 | |
| 5146 | std::vector<std::string> names; |
| 5147 | tests.getAllTestNames(names); |
| 5148 | for (auto it = names.cbegin(); it != names.cend(); ++it) { |
| 5149 | std::printf(" %s\n", it->c_str()); |
| 5150 | } |
| 5151 | } |
| 5152 | |
| 5153 | |
| 5154 | // Basic test harness |
no test coverage detected