| 
									
										
										
										
											2017-04-27 20:21:27 +02:00
										 |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							| 
									
										
										
										
											2014-04-14 14:27:32 -03:00
										 |  |  | #include "testunitconversion.h"
 | 
					
						
							| 
									
										
										
										
											2016-04-05 14:22:00 -03:00
										 |  |  | #include "core/dive.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-11 08:25:41 -07:00
										 |  |  | #include "core/subsurface-string.h"
 | 
					
						
							| 
									
										
										
										
											2014-04-14 14:27:32 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void TestUnitConversion::testUnitConversions() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-15 11:39:51 -05:00
										 |  |  | 	QCOMPARE(IS_FP_SAME(grams_to_lbs(1000), 2.204586), true); | 
					
						
							| 
									
										
										
										
											2014-04-14 14:27:32 -03:00
										 |  |  | 	QCOMPARE(lbs_to_grams(1), 454); | 
					
						
							|  |  |  | 	QCOMPARE(IS_FP_SAME(ml_to_cuft(1000), 0.0353147), true); | 
					
						
							| 
									
										
										
										
											2014-04-15 11:39:51 -05:00
										 |  |  | 	QCOMPARE(IS_FP_SAME(cuft_to_l(1), 28.316847), true); | 
					
						
							|  |  |  | 	QCOMPARE(IS_FP_SAME(mm_to_feet(1000), 3.280840), true); | 
					
						
							| 
									
										
										
										
											2018-07-25 12:39:04 -07:00
										 |  |  | 	QCOMPARE(feet_to_mm(1), (long unsigned int)305); | 
					
						
							|  |  |  | 	QCOMPARE(to_feet((depth_t){1000}), 3); | 
					
						
							| 
									
										
										
										
											2014-04-15 22:48:35 -05:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2018-07-25 12:39:04 -07:00
										 |  |  | 	QCOMPARE(to_PSI((pressure_t){1013}), (int)15); | 
					
						
							| 
									
										
										
										
											2016-02-01 18:00:49 -08:00
										 |  |  | 	QCOMPARE(IS_FP_SAME(bar_to_atm(1.013), 1.0), true); | 
					
						
							|  |  |  | 	QCOMPARE(IS_FP_SAME(mbar_to_atm(1013), 1.0), true); | 
					
						
							| 
									
										
										
										
											2014-04-15 22:48:35 -05:00
										 |  |  | 	QCOMPARE(mbar_to_PSI(1013), (int)15); | 
					
						
							| 
									
										
										
										
											2014-04-14 14:27:32 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-05 23:26:51 +01:00
										 |  |  | QTEST_GUILESS_MAIN(TestUnitConversion) |