[generator] Added tests.

This commit is contained in:
Maksim Andrianov 2020-04-24 12:56:21 +03:00 committed by Tatiana Yan
parent 357c761a5c
commit a71a4eba2b

View file

@ -844,6 +844,33 @@ UNIT_CLASS_TEST(TestWithClassificator, OsmType_Cuisine)
}
}
UNIT_CLASS_TEST(TestWithClassificator, OsmType_Hotel)
{
using Type = std::vector<std::string>;
std::vector<std::pair<std::vector<Type>, Tags>> const types = {
{
{{"tourism", "hotel"}},
{{"tourism", "hotel"}},
},
{
{{"tourism", "hotel"}, {"building"}},
{{"building", "hotel"}},
},
{
{{"tourism", "hotel"}},
{{"hotel", "yes"}},
}
};
for (auto const & t : types)
{
auto const params = GetFeatureBuilderParams(t.second);
TEST_EQUAL(t.first.size(), params.m_types.size(), (params, t));
for (auto const & t : t.first)
TEST(params.IsTypeExist(GetType(t)), (params));
}
}
UNIT_CLASS_TEST(TestWithClassificator, OsmType_MergeTags)
{
{