diff options
author | jan Iversen <jani@apache.org> | 2018-08-01 15:29:16 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-02 08:59:56 -0700 |
commit | ccfd14211a77e9f6c3832d81a150cdfd04b757c9 (patch) | |
tree | 40b004b331e52d01571ed58d7f5c67ab6b9f69b4 /tests/testpreferences.cpp | |
parent | d9b7aaef761aaae3904fe58011a58ec438f49ef1 (diff) | |
download | subsurface-ccfd14211a77e9f6c3832d81a150cdfd04b757c9.tar.gz |
tests: move Units test from testpreferences
Remove Units test in testpreferences
add the same Units tests to testqPrefUnits
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'tests/testpreferences.cpp')
-rw-r--r-- | tests/testpreferences.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/testpreferences.cpp b/tests/testpreferences.cpp index fa3c08e23..50c8472d8 100644 --- a/tests/testpreferences.cpp +++ b/tests/testpreferences.cpp @@ -278,43 +278,6 @@ void TestPreferences::testPreferences() TEST(planner->decoMode(), RECREATIONAL); - auto units = qPrefUnits::instance(); - units->set_length(units::METERS); - units->set_pressure(units::BAR); - units->set_volume(units::LITER); - units->set_temperature(units::CELSIUS); - units->set_weight(units::KG); - units->set_vertical_speed_time(units::SECONDS); - units->set_unit_system(QStringLiteral("metric")); - units->set_coordinates_traditional(false); - - TEST(units->length(), units::METERS); - TEST(units->pressure(), units::BAR); - TEST(units->volume(), units::LITER); - TEST(units->temperature(), units::CELSIUS); - TEST(units->weight(), units::KG); - TEST(units->vertical_speed_time(), units::SECONDS); - TEST(units->unit_system(), QStringLiteral("metric")); - TEST(units->coordinates_traditional(), false); - - units->set_length(units::FEET); - units->set_pressure(units::PSI); - units->set_volume(units::CUFT); - units->set_temperature(units::FAHRENHEIT); - units->set_weight(units::LBS); - units->set_vertical_speed_time(units::MINUTES); - units->set_unit_system(QStringLiteral("fake-metric-system")); - units->set_coordinates_traditional(true); - - TEST(units->length(), units::FEET); - TEST(units->pressure(), units::PSI); - TEST(units->volume(), units::CUFT); - TEST(units->temperature(), units::FAHRENHEIT); - TEST(units->weight(), units::LBS); - TEST(units->vertical_speed_time(), units::MINUTES); - TEST(units->unit_system(), QStringLiteral("personalized")); - TEST(units->coordinates_traditional(), true); - auto general = pref->general_settings; general->setDefaultFilename("filename"); general->setDefaultCylinder("cylinder_2"); |