summaryrefslogtreecommitdiffstats
path: root/tests/testqPrefGeneral.cpp
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@apache.org>2018-08-20 12:50:21 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-08-25 11:49:47 -0700
commit5f4a040dd217c07a341bd03fe80fe19747d1541e (patch)
tree6c8d480dabf65ff15a721c3dccfc152b946b1cd8 /tests/testqPrefGeneral.cpp
parentda6e8a4cd5d80a4288129bf44b1efad69de1704f (diff)
downloadsubsurface-5f4a040dd217c07a341bd03fe80fe19747d1541e.tar.gz
core/tests: add class var to qPrefGeneral
Add static class variables to qPrefGeneral (and remove QSettings from desktop-widgets) Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'tests/testqPrefGeneral.cpp')
-rw-r--r--tests/testqPrefGeneral.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/testqPrefGeneral.cpp b/tests/testqPrefGeneral.cpp
index 2e6ec76c0..c26616e90 100644
--- a/tests/testqPrefGeneral.cpp
+++ b/tests/testqPrefGeneral.cpp
@@ -62,6 +62,8 @@ void TestQPrefGeneral::test_set_struct()
tst->set_o2consumption(27);
tst->set_pscr_ratio(28);
tst->set_use_default_file(false);
+ tst->set_diveshareExport_uid("uid1");
+ tst->set_diveshareExport_private(false);
QCOMPARE(prefs.auto_recalculate_thumbnails, false);
QCOMPARE(QString(prefs.default_cylinder), QString("new base21"));
@@ -74,6 +76,8 @@ void TestQPrefGeneral::test_set_struct()
QCOMPARE(prefs.o2consumption, 27);
QCOMPARE(prefs.pscr_ratio, 28);
QCOMPARE(prefs.use_default_file, false);
+ QCOMPARE(tst->diveshareExport_uid(), QString("uid1"));
+ QCOMPARE(tst->diveshareExport_private(), false);
}
void TestQPrefGeneral::test_set_load_struct()
@@ -93,6 +97,8 @@ void TestQPrefGeneral::test_set_load_struct()
tst->set_o2consumption(37);
tst->set_pscr_ratio(38);
tst->set_use_default_file(true);
+ tst->set_diveshareExport_uid("uid2");
+ tst->set_diveshareExport_private(true);
prefs.auto_recalculate_thumbnails = false;
prefs.default_cylinder = copy_qstring("error");
@@ -118,6 +124,8 @@ void TestQPrefGeneral::test_set_load_struct()
QCOMPARE(prefs.o2consumption, 37);
QCOMPARE(prefs.pscr_ratio, 38);
QCOMPARE(prefs.use_default_file, true);
+ QCOMPARE(tst->diveshareExport_uid(), QString("uid2"));
+ QCOMPARE(tst->diveshareExport_private(), true);
}
void TestQPrefGeneral::test_struct_disk()