| 19 | using testing::Pair; |
| 20 | |
| 21 | std::vector<std::pair<int, std::string>> asVector(const LuaUtil::ScriptIdsWithInitializationData& d) |
| 22 | { |
| 23 | std::vector<std::pair<int, std::string>> res; |
| 24 | for (const auto& [k, v] : d) |
| 25 | res.emplace_back(k, std::string(v)); |
| 26 | return res; |
| 27 | } |
| 28 | |
| 29 | TEST(LuaConfigurationTest, ValidOMWScripts) |
| 30 | { |