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

◆ are_equal() [9/16]

static void xtd::tunit::valid::are_equal ( double  expected,
double  actual,
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
double d = 0.00007999999999;
xtd::tunit::valid::are_equal_(0.00008, d, 0.0000000000001); // test ok.
xtd::tunit::valid::are_equal_(0.00008, d, 0.00000000000001); // test fails.
@ d
The D key.