diff options
author | Tim Segers <tsegers@pm.me> | 2023-01-02 21:54:31 +0100 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2023-01-07 15:24:51 +0100 |
commit | 650812777953ecc1ddb1280c86b63fa4b5761ed6 (patch) | |
tree | 4715b5f67e42dc14c59a25d5d90a98c2c2ecb241 /test | |
parent | 2fcfc12ea05a8707910376f2e025506db0d89164 (diff) | |
download | opendeco-650812777953ecc1ddb1280c86b63fa4b5761ed6.tar.gz |
Add macro to compare floats with user-defined max error
Diffstat (limited to 'test')
-rw-r--r-- | test/deco_test.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/deco_test.c b/test/deco_test.c index 1f9ba9f..f87cffc 100644 --- a/test/deco_test.c +++ b/test/deco_test.c @@ -19,6 +19,8 @@ MU_TEST(test_abs_gauge) MU_TEST(test_gas) { + double max_mod_err = 1E-3; + gas_t foo = gas_new(21, 35, MOD_AUTO); gas_t bar = gas_new(21, 0, MOD_AUTO); gas_t baz = gas_new(21, 35, MOD_AUTO); @@ -33,9 +35,9 @@ MU_TEST(test_gas) mu_check(gas_equal(&foo, &baz)); mu_check(!gas_equal(&foo, &qux)); - mu_assert_double_eq(abs_depth(msw_to_bar(51.6)), gas_mod(&foo)); - mu_assert_double_eq(abs_depth(msw_to_bar(30)), gas_mod(&bar)); - mu_assert_double_eq(99, gas_mod(&qux)); + mu_assert_double_near(abs_depth(msw_to_bar(51.6)), gas_mod(&foo), max_mod_err); + mu_assert_double_near(abs_depth(msw_to_bar(30)), gas_mod(&bar), max_mod_err); + mu_assert_double_near(99, gas_mod(&qux), max_mod_err); } void testsuite_deco_setup(void) |