InDeltaSlicef is the same as InDelta, except it compares two slices.
(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{})
| 724 | |
| 725 | // InDeltaSlicef is the same as InDelta, except it compares two slices. |
| 726 | func (a *Assertions) InDeltaSlicef(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{}) bool { |
| 727 | if h, ok := a.t.(tHelper); ok { |
| 728 | h.Helper() |
| 729 | } |
| 730 | return InDeltaSlicef(a.t, expected, actual, delta, msg, args...) |
| 731 | } |
| 732 | |
| 733 | // InDeltaf asserts that the two numerals are within delta of each other. |
| 734 | // |
nothing calls this directly
no test coverage detected