| 93 | std::string const AffiliationTests::kTwo = "Two"; |
| 94 | |
| 95 | bool Test(std::vector<std::string> && res, std::set<std::string> const & answ) |
| 96 | { |
| 97 | if (res.size() != answ.size()) |
| 98 | return false; |
| 99 | |
| 100 | std::set<std::string> r; |
| 101 | std::move(std::begin(res), std::end(res), std::inserter(r, std::begin(r))); |
| 102 | return r == answ; |
| 103 | } |
| 104 | |
| 105 | void TestCountriesAffiliationInsideBorders(feature::AffiliationInterface const & affiliation) |
| 106 | { |
no test coverage detected