Generator test fix.

This commit is contained in:
Vladimir Byko-Ianko 2017-04-06 17:09:58 +03:00 committed by Добрый Ээх
parent 56181a26af
commit 8984d630b9
2 changed files with 4 additions and 6 deletions

View file

@ -30,8 +30,7 @@ string const kRestrictionTestDir = "test-restrictions";
UNIT_TEST(RestrictionTest_ValidCase)
{
RestrictionCollector restrictionCollector("" /* restrictionPath */,
"" /* osmIdsToFeatureIdsPath */);
RestrictionCollector restrictionCollector;
// Adding feature ids.
restrictionCollector.AddFeatureId(30 /* featureId */, osm::Id::Way(3));
restrictionCollector.AddFeatureId(10 /* featureId */, osm::Id::Way(1));
@ -56,8 +55,7 @@ UNIT_TEST(RestrictionTest_ValidCase)
UNIT_TEST(RestrictionTest_InvalidCase)
{
RestrictionCollector restrictionCollector("" /* restrictionPath */,
"" /* osmIdsToFeatureIdsPath */);
RestrictionCollector restrictionCollector;
restrictionCollector.AddFeatureId(0 /* featureId */, osm::Id::Way(0));
restrictionCollector.AddFeatureId(20 /* featureId */, osm::Id::Way(2));
@ -80,8 +78,7 @@ UNIT_TEST(RestrictionTest_ParseRestrictions)
ScopedDir const scopedDir(kRestrictionTestDir);
ScopedFile const scopedFile(kRestrictionPath, kRestrictionContent);
RestrictionCollector restrictionCollector("" /* restrictionPath */,
"" /* osmIdsToFeatureIdsPath */);
RestrictionCollector restrictionCollector;
Platform const & platform = Platform();

View file

@ -18,6 +18,7 @@ namespace routing
class RestrictionCollector
{
public:
RestrictionCollector() = default;
/// \param restrictionPath full path to file with road restrictions in osm id terms.
/// \param osmIdsToFeatureIdsPath full path to file with mapping from osm ids to feature ids.
RestrictionCollector(string const & restrictionPath, string const & osmIdsToFeatureIdsPath);