mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
aa4b48f440
This were in subsurface-string.h for unknown reasons. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
27 lines
1.1 KiB
C++
27 lines
1.1 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "testunitconversion.h"
|
|
#include "core/dive.h"
|
|
#include "core/subsurface-float.h"
|
|
|
|
void TestUnitConversion::testUnitConversions()
|
|
{
|
|
QCOMPARE(nearly_equal(grams_to_lbs(1000), 2.204586), true);
|
|
QCOMPARE(lbs_to_grams(1), 454);
|
|
QCOMPARE(nearly_equal(ml_to_cuft(1000), 0.0353147), true);
|
|
QCOMPARE(nearly_equal(cuft_to_l(1), 28.316847), true);
|
|
QCOMPARE(nearly_equal(mm_to_feet(1000), 3.280840), true);
|
|
QCOMPARE(feet_to_mm(1), 305L);
|
|
QCOMPARE(to_feet((depth_t){1000}), 3);
|
|
QCOMPARE(nearly_equal(mkelvin_to_C(647000), 373.85), true);
|
|
QCOMPARE(nearly_equal(mkelvin_to_F(647000), 704.93), true);
|
|
QCOMPARE(F_to_mkelvin(704.93), 647000UL);
|
|
QCOMPARE(C_to_mkelvin(373.85), 647000UL);
|
|
QCOMPARE(nearly_equal(psi_to_bar(14.6959488), 1.01325), true);
|
|
QCOMPARE(psi_to_mbar(14.6959488), 1013L);
|
|
QCOMPARE(nearly_equal(to_PSI((pressure_t){1013}), 14.6923228594), true);
|
|
QCOMPARE(nearly_equal(bar_to_atm(1.013), 1.0), true);
|
|
QCOMPARE(nearly_equal(mbar_to_atm(1013), 1.0), true);
|
|
QCOMPARE(nearly_equal(mbar_to_PSI(1013), 14.6923228594), true);
|
|
}
|
|
|
|
QTEST_GUILESS_MAIN(TestUnitConversion)
|