AssertEqualsNumericalNumber
From ApCoCoAWiki
Revision as of 09:59, 30 November 2011 by Stadler (talk | contribs) (Undo revision 12356 by Chruse Arroyo (Talk))
AssertEqualsNumericalNumber
Compares two numerical numbers.
Syntax
$apcocoa/ts/assert.AssertEqualsNumericalNumber(Result: RAT, Expected: RAT, Eps: RAT, ErrMsg: STRING)
Description
This function compares two numerical numbers. The absolute value of the difference between 'Result' and 'Expected' must be smaller than epsilon 'Eps'. If not it throws an error and prints the error message 'ErrMsg'.
@param Result: The numerical number
@param Expected: The expected numerical number
@param Eps: Epsilon
@param ErrMsg: Error message
Example
$apcocoa/ts/assert.AssertTrue(0.98, 1.00, 0.1, "The result does not equal the expected numerical number.");