Shows how to use xtd::tunit::assert::are_equal_with_tolerance method.
#include <xtd/xtd.tunit>
namespace unit_tests {
class test_class_(test) {
auto d = 0.5999999999;
assert::are_equal(0.6, d, 0.000000001);
}
auto d = 0.5999999999;
assert::are_equal(0.6, d, 0.0000000001);
}
};
}
auto main() -> int {
return console_unit_test().run();
}
#define test_method_(method_name)
Add test method to class test.
Definition test_method_attribute.hpp:72