-----------------------------------------------*/
| 882 | |
| 883 | /*-----------------------------------------------*/ |
| 884 | void UnityAssertDoublesWithin(const UNITY_DOUBLE delta, |
| 885 | const UNITY_DOUBLE expected, |
| 886 | const UNITY_DOUBLE actual, |
| 887 | const char* msg, |
| 888 | const UNITY_LINE_TYPE lineNumber) |
| 889 | { |
| 890 | RETURN_IF_FAIL_OR_IGNORE; |
| 891 | |
| 892 | if (!UnityDoublesWithin(delta, expected, actual)) |
| 893 | { |
| 894 | UnityTestResultsFailBegin(lineNumber); |
| 895 | UNITY_PRINT_EXPECTED_AND_ACTUAL_FLOAT(expected, actual); |
| 896 | UnityAddMsgIfSpecified(msg); |
| 897 | UNITY_FAIL_AND_BAIL; |
| 898 | } |
| 899 | } |
| 900 | |
| 901 | /*-----------------------------------------------*/ |
| 902 |
nothing calls this directly
no test coverage detected
searching dependent graphs…