InDeltaSlice is the same as InDelta, except it compares two slices.
(expected interface{}, actual interface{}, delta float64, msgAndArgs ...interface{})
| 716 | |
| 717 | // InDeltaSlice is the same as InDelta, except it compares two slices. |
| 718 | func (a *Assertions) InDeltaSlice(expected interface{}, actual interface{}, delta float64, msgAndArgs ...interface{}) bool { |
| 719 | if h, ok := a.t.(tHelper); ok { |
| 720 | h.Helper() |
| 721 | } |
| 722 | return InDeltaSlice(a.t, expected, actual, delta, msgAndArgs...) |
| 723 | } |
| 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 { |
nothing calls this directly
no test coverage detected