diff options
author | jan Iversen <jan@casacondor.com> | 2019-11-23 17:40:56 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-05 11:48:26 -0800 |
commit | 6e846eb4c0c5755ddddbd696aeb6531eab5488d8 (patch) | |
tree | 08fb31f179eb2f254f0457b4fa06b22d09ef675d /tests/testqPrefTechnicalDetails.cpp | |
parent | 54f8217eec0df1876086849c8dcc594da709201a (diff) | |
download | subsurface-6e846eb4c0c5755ddddbd696aeb6531eab5488d8.tar.gz |
tests: correct testqPref*.cpp to use static qPref* functions.
qPref* set/get functions are static.
remove creation of qPref* instances, reference
static functions.
Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'tests/testqPrefTechnicalDetails.cpp')
-rw-r--r-- | tests/testqPrefTechnicalDetails.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/testqPrefTechnicalDetails.cpp b/tests/testqPrefTechnicalDetails.cpp index a0b70f7fb..9b6d88a45 100644 --- a/tests/testqPrefTechnicalDetails.cpp +++ b/tests/testqPrefTechnicalDetails.cpp @@ -329,15 +329,13 @@ void TestQPrefTechnicalDetails::test_multiple() // test multiple instances have the same information prefs.gfhigh = 27; - auto tst_direct = new qPrefTechnicalDetails; - prefs.gflow = 25; auto tst = qPrefTechnicalDetails::instance(); - QCOMPARE(tst->gfhigh(), tst_direct->gfhigh()); - QCOMPARE(tst->gflow(), tst_direct->gflow()); - QCOMPARE(tst_direct->gfhigh(), 27); - QCOMPARE(tst_direct->gflow(), 25); + QCOMPARE(tst->gfhigh(), qPrefTechnicalDetails::gfhigh()); + QCOMPARE(tst->gflow(), qPrefTechnicalDetails::gflow()); + QCOMPARE(qPrefTechnicalDetails::gfhigh(), 27); + QCOMPARE(qPrefTechnicalDetails::gflow(), 25); } #define TEST(METHOD, VALUE) \ |