[indexer] Test on IsMotorwayJunctionChecker.

This commit is contained in:
Vladimir Byko-Ianko 2019-10-07 17:41:32 +03:00 committed by gmoryes
parent 9576cbf33a
commit 1c0e8a689f

View file

@ -100,6 +100,12 @@ vector<uint32_t> GetBridgeAndTunnelTypes()
return GetTypes(arr, ARRAY_SIZE(arr));
}
uint32_t GetMotorwayJunctionType()
{
Classificator const & c = classif();
return c.GetTypeByPath({"highway", "motorway_junction"});
}
vector<uint32_t> GetPoiTypes()
{
std::vector<std::string> const types = {
@ -238,3 +244,11 @@ UNIT_TEST(IsAttractionsChecker)
TEST(!checker(c.GetTypeByPath({"route", "shuttle_train"})), ());
}
UNIT_TEST(IsMotorwayJunctionChecker)
{
classificator::Load();
TEST(ftypes::IsMotorwayJunctionChecker::Instance()(GetMotorwayJunctionType()), ());
TEST(!ftypes::IsMotorwayJunctionChecker::Instance()(GetPoiTypes()), ());
}