InDeltaSlicef is the same as InDelta, except it compares two slices.
(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{})
| 739 | |
| 740 | // InDeltaSlicef is the same as InDelta, except it compares two slices. |
| 741 | func (a *Assertions) InDeltaSlicef(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{}) { |
| 742 | if h, ok := a.t.(tHelper); ok { |
| 743 | h.Helper() |
| 744 | } |
| 745 | InDeltaSlicef(a.t, expected, actual, delta, msg, args...) |
| 746 | } |
| 747 | |
| 748 | // InDeltaf asserts that the two numerals are within delta of each other. |
| 749 | // |
nothing calls this directly
no test coverage detected