From 3966f3e7dd1421da72c8920c2fd6b246f0ee063a Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 1 Nov 2016 11:28:08 +0100 Subject: Preferences tests: location updates & bug fix Fixed loading the location preferences. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- tests/testpreferences.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests') diff --git a/tests/testpreferences.cpp b/tests/testpreferences.cpp index 9ad3ee079..c1ef2a8e2 100644 --- a/tests/testpreferences.cpp +++ b/tests/testpreferences.cpp @@ -537,6 +537,19 @@ void TestPreferences::testPreferences() TEST(pref->animation_settings->animationSpeed(), 20); pref->animation_settings->setAnimationSpeed(30); TEST(pref->animation_settings->animationSpeed(), 30); + + auto location = pref->location_settings; + location->setTimeThreshold(10); + location->setDistanceThreshold(20); + + TEST(location->timeThreshold(), 10); + TEST(location->distanceThreshold(), 20); + + location->setTimeThreshold(30); + location->setDistanceThreshold(40); + + TEST(location->timeThreshold(), 30); + TEST(location->distanceThreshold(), 40); } QTEST_MAIN(TestPreferences) -- cgit v1.2.3-70-g09d2