diff options
Diffstat (limited to 'test_pressure.c')
| -rw-r--r-- | test_pressure.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test_pressure.c b/test_pressure.c index f04a1bc..e805858 100644 --- a/test_pressure.c +++ b/test_pressure.c @@ -30,6 +30,11 @@ test_psi(void) { } void +test_inch_mercury(void) { + test(inch_mercury(123.456), 418070.040384); +} + +void test_as_pascal(void) { test(as_pascal(pascal(123.456)), 123.456); } @@ -53,3 +58,8 @@ void test_as_psi(void) { test(as_psi(psi(123.456)), 123.456); } + +void +test_as_inch_mercury(void) { + test(as_inch_mercury(inch_mercury(123.456)), 123.456); +} |