| 218 | |
| 219 | template <typename T> |
| 220 | std::vector<T> GetKeys(std::map<T, std::string> dict) |
| 221 | { |
| 222 | std::vector<T> keys; |
| 223 | for (auto const &item: dict) { |
| 224 | keys.push_back(item.first); |
| 225 | } |
| 226 | return keys; |
| 227 | } |
| 228 | |
| 229 | struct TestParameters { |
| 230 | static const std::map<test_function, std::string> functions; |