mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Test cases for unit conversion
Added more test cases for unit conversion Signed-off-by: Lakshman Anumolu <acrlakshman@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
54af66bdb3
commit
c6295b77fa
1 changed files with 11 additions and 0 deletions
|
@ -9,6 +9,17 @@ void TestUnitConversion::testUnitConversions()
|
|||
QCOMPARE(IS_FP_SAME(cuft_to_l(1), 28.316847), true);
|
||||
QCOMPARE(IS_FP_SAME(mm_to_feet(1000), 3.280840), true);
|
||||
QCOMPARE(feet_to_mm(1), (long unsigned int) 305);
|
||||
QCOMPARE(to_feet((depth_t){ 1000 }), 3);
|
||||
QCOMPARE(IS_FP_SAME(mkelvin_to_C(647000), 373.85), true);
|
||||
QCOMPARE(IS_FP_SAME(mkelvin_to_F(647000), 704.93), true);
|
||||
QCOMPARE(F_to_mkelvin(704.93), (unsigned long)647000);
|
||||
QCOMPARE(C_to_mkelvin(373.85), (unsigned long)647000);
|
||||
QCOMPARE(IS_FP_SAME(psi_to_bar(14.6959488), 1.01325), true);
|
||||
QCOMPARE(psi_to_mbar(14.6959488), (long)1013);
|
||||
QCOMPARE(to_PSI((pressure_t){ 1013 }), (int)15);
|
||||
QCOMPARE(IS_FP_SAME(bar_to_atm(1.013), 1), true);
|
||||
QCOMPARE(IS_FP_SAME(mbar_to_atm(1013), 1), true);
|
||||
QCOMPARE(mbar_to_PSI(1013), (int)15);
|
||||
}
|
||||
|
||||
QTEST_MAIN(TestUnitConversion)
|
||||
|
|
Loading…
Add table
Reference in a new issue