[generator] Test cuisine osm2type.

This commit is contained in:
tatiana-yan 2018-10-02 11:30:45 +03:00 committed by mpimenov
parent 75f0e5238f
commit c8c4622c71

View file

@ -903,3 +903,23 @@ UNIT_TEST(OsmType_Translations)
TEST(params.name.GetString("ru", name), (params));
TEST_EQUAL(name, "Париж", (params));
}
UNIT_TEST(OsmType_Cuisine)
{
{
char const * arr[][2] = {
{ "cuisine", "indian ; steak,coffee shop " },
};
OsmElement e;
FillXmlElement(arr, ARRAY_SIZE(arr), &e);
FeatureParams params;
ftype::GetNameAndType(&e, params);
TEST_EQUAL(params.m_types.size(), 3, (params));
TEST(params.IsTypeExist(GetType({"cuisine", "indian"})), (params));
TEST(params.IsTypeExist(GetType({"cuisine", "steak_house"})), (params));
TEST(params.IsTypeExist(GetType({"cuisine", "coffee_shop"})), (params));
}
}