Merge pull request #3140 from syershov/fix-tests

Fix generator tests
This commit is contained in:
therearesomewhocallmetim 2016-05-10 16:23:19 +04:00
commit 56c3b2947c

View file

@ -2,8 +2,11 @@
#include "types_helper.hpp"
#include "platform/platform.hpp"
#include "generator/osm_element.hpp"
#include "generator/osm2type.hpp"
#include "generator/tag_admixer.hpp"
#include "routing/car_model.hpp"
@ -236,6 +239,9 @@ UNIT_TEST(OsmType_Synonyms)
OsmElement e;
FillXmlElement(arr, ARRAY_SIZE(arr), &e);
TagReplacer tagReplacer(GetPlatform().ResourcesDir() + REPLACED_TAGS_FILE);
tagReplacer(&e);
FeatureParams params;
ftype::GetNameAndType(&e, params);
@ -763,6 +769,9 @@ UNIT_TEST(OsmType_Entrance)
OsmElement e;
FillXmlElement(arr, ARRAY_SIZE(arr), &e);
TagReplacer tagReplacer(GetPlatform().ResourcesDir() + REPLACED_TAGS_FILE);
tagReplacer(&e);
FeatureParams params;
ftype::GetNameAndType(&e, params);