Function expectApproxEqAbs [src]

This function is intended to be used only in tests. When the actual value is not approximately equal to the expected value, prints diagnostics to stderr to show exactly how they are not equal, then returns a test failure error. See math.approxEqAbs for more information on the tolerance parameter. The types must be floating-point. actual and expected are coerced to a common type using peer type resolution.

Prototype

pub inline fn expectApproxEqAbs(expected: anytype, actual: anytype, tolerance: anytype) !void

Example

test expectApproxEqAbs { inline for ([_]type{ f16, f32, f64, f128 }) |T| { const pos_x: T = 12.0; const pos_y: T = 12.06; const neg_x: T = -12.0; const neg_y: T = -12.06; try expectApproxEqAbs(pos_x, pos_y, 0.1); try expectApproxEqAbs(neg_x, neg_y, 0.1); } }

Source

pub inline fn expectApproxEqAbs(expected: anytype, actual: anytype, tolerance: anytype) !void { const T = @TypeOf(expected, actual, tolerance); return expectApproxEqAbsInner(T, expected, actual, tolerance); }