forked from organicmaps/organicmaps
[indexer] Test on IsMotorwayJunctionChecker.
This commit is contained in:
parent
9576cbf33a
commit
1c0e8a689f
1 changed files with 14 additions and 0 deletions
|
@ -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()), ());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue