xtd 0.2.0
Loading...
Searching...
No Matches

◆ are_equal() [13/16]

static void xtd::tunit::valid::are_equal ( long double  expected,
long double  actual,
long double  tolerance 
)
static

Validates that two type are equal.

Parameters
expectedthe expected value.
actualthe actual value.
toleranceIndicates a tolerance within which they will be considered as equal.
Examples
long double ld = 0.00007999999999;
xtd::tunit::valid::are_equal_(0.00008l, ld, 0.0000000000001l); // test ok.
xtd::tunit::valid::are_equal_(0.00008l, ld, 0.00000000000001l); // test fails.