tests: move Geocoding test from testpreferences

Remove Geocoding test in testpreferences
add the same Geocoding tests to testqPrefGeocoding

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2018-08-10 20:59:42 +02:00 committed by Dirk Hohndel
parent 859f08a358
commit 80583e63b5
3 changed files with 27 additions and 17 deletions

View file

@ -101,4 +101,30 @@ void TestQPrefGeocoding::test_multiple()
QCOMPARE(tst->second_taxonomy_category(), TC_OCEAN);
}
#define TEST(METHOD, VALUE) \
QCOMPARE(METHOD, VALUE); \
geo->sync(); \
geo->load(); \
QCOMPARE(METHOD, VALUE);
void TestQPrefGeocoding::test_oldPreferences()
{
auto geo = qPrefGeocoding::instance();
geo->set_first_taxonomy_category(TC_NONE);
geo->set_second_taxonomy_category(TC_OCEAN);
geo->set_third_taxonomy_category(TC_COUNTRY);
TEST(geo->first_taxonomy_category(), TC_NONE);
TEST(geo->second_taxonomy_category(), TC_OCEAN);
TEST(geo->third_taxonomy_category(), TC_COUNTRY);
geo->set_first_taxonomy_category(TC_OCEAN);
geo->set_second_taxonomy_category(TC_COUNTRY);
geo->set_third_taxonomy_category(TC_NONE);
TEST(geo->first_taxonomy_category(), TC_OCEAN);
TEST(geo->second_taxonomy_category(), TC_COUNTRY);
TEST(geo->third_taxonomy_category(), TC_NONE);
}
QTEST_MAIN(TestQPrefGeocoding)