forked from organicmaps/organicmaps
[generator] Added tests.
This commit is contained in:
parent
357c761a5c
commit
a71a4eba2b
1 changed files with 27 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue