forked from organicmaps/organicmaps-tmp
Fixed camera test and code style
This commit is contained in:
parent
e8ea9a73c2
commit
8aeb01280f
2 changed files with 13 additions and 3 deletions
|
@ -149,7 +149,7 @@ FollowedPolyline::UpdatedProjectionInfo FollowedPolyline::UpdateMatchedProjectio
|
|||
ASSERT(m_current.IsValid(), ());
|
||||
ASSERT_LESS(m_current.m_ind, m_poly.GetSize() - 1, ());
|
||||
|
||||
auto res = GetBestMatchedProjection(posRect);
|
||||
auto const res = GetBestMatchedProjection(posRect);
|
||||
|
||||
if (res.m_iter.IsValid())
|
||||
m_current = res.m_iter;
|
||||
|
|
|
@ -320,15 +320,25 @@ UNIT_TEST(SpeedCameraNotification_AutoAlwaysMode_7)
|
|||
TEST(!CheckBeepSignal(routingSession), ());
|
||||
}
|
||||
|
||||
// No exceed speed limit in beep zone, we did no VoiceNotification,
|
||||
// Intermediate Move for correct calculating of passedDistance.
|
||||
{
|
||||
double const speedKmPH = 20.0;
|
||||
ChangePosition({ 55.76559, 37.59016}, speedKmPH, routingSession);
|
||||
TEST_EQUAL(CheckZone(routingSession, speedKmPH), SpeedCameraManager::Interval::VoiceNotificationZone, ());
|
||||
TEST(!CheckVoiceNotification(routingSession), ());
|
||||
TEST(!CheckBeepSignal(routingSession), ());
|
||||
}
|
||||
|
||||
// No exceed speed limit in beep zone, but we did VoiceNotification earlier,
|
||||
// so now we make BeedSignal.
|
||||
{
|
||||
double const speedKmPH = 40.0;
|
||||
ChangePosition({55.76559, 37.59016}, speedKmPH, routingSession);
|
||||
ChangePosition({ 55.765732, 37.590305}, speedKmPH, routingSession);
|
||||
TEST_EQUAL(CheckZone(routingSession, speedKmPH), SpeedCameraManager::Interval::BeepSignalZone, ());
|
||||
TEST(!CheckVoiceNotification(routingSession), ());
|
||||
TEST(CheckBeepSignal(routingSession), ());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue