forked from organicmaps/organicmaps-tmp
Remove useless counter from integration_tests
This commit is contained in:
parent
f7292c4a44
commit
7de510b787
1 changed files with 1 additions and 18 deletions
|
@ -35,15 +35,6 @@ inline bool HasPlus(std::vector<T> const & v)
|
|||
return std::any_of(begin(v), end(v), hasPlus);
|
||||
}
|
||||
|
||||
inline bool HasExtendedHours(osmoh::TTimespans const & spans)
|
||||
{
|
||||
auto const hasExtendedHours = [](osmoh::Timespan const & s)
|
||||
{
|
||||
return s.HasExtendedHours();
|
||||
};
|
||||
return std::any_of(begin(spans), end(spans), hasExtendedHours);
|
||||
}
|
||||
|
||||
inline bool HasOffset(osmoh::TMonthdayRanges const & mr)
|
||||
{
|
||||
auto const hasOffset = [](osmoh::MonthdayRange const & md) {
|
||||
|
@ -83,12 +74,6 @@ enum
|
|||
Serialised,
|
||||
Period,
|
||||
Plus,
|
||||
// True if a rule has Timespan with more than 24 hours at the end
|
||||
// or and greater than start.
|
||||
// Example:
|
||||
// 12:00-29:00
|
||||
// 13:12-06:15
|
||||
ExtendedHours,
|
||||
Offset,
|
||||
Count_
|
||||
};
|
||||
|
@ -116,8 +101,6 @@ inline TRuleFeatures DescribeRule(osmoh::TRuleSequences const & rule)
|
|||
|
||||
features[Offset] |= HasOffset(r.GetMonths());
|
||||
features[Offset] |= HasOffset(r.GetWeekdays());
|
||||
|
||||
features[ExtendedHours] |= HasExtendedHours(r.GetTimes());
|
||||
}
|
||||
|
||||
return features;
|
||||
|
@ -206,7 +189,7 @@ BOOST_AUTO_TEST_CASE(OpeningHours_CountFailed)
|
|||
}
|
||||
{
|
||||
std::stringstream message;
|
||||
message << "Parsed\tSerialised\tPeriod\tPlus\tExtendedHours\tOffset\tCount" << std::endl;
|
||||
message << "Parsed\tSerialised\tPeriod\tPlus\tOffset\tCount" << std::endl;
|
||||
for (auto const & e : featuresDistrib)
|
||||
message << e.first << '\t' << e.second << std::endl;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue