InDeltaSlice is the same as InDelta, except it compares two slices.
(expected interface{}, actual interface{}, delta float64, msgAndArgs ...interface{})
| 730 | |
| 731 | // InDeltaSlice is the same as InDelta, except it compares two slices. |
| 732 | func (a *Assertions) InDeltaSlice(expected interface{}, actual interface{}, delta float64, msgAndArgs ...interface{}) bool { |
| 733 | if h, ok := a.t.(tHelper); ok { |
| 734 | h.Helper() |
| 735 | } |
| 736 | return InDeltaSlice(a.t, expected, actual, delta, msgAndArgs...) |
| 737 | } |
| 738 | |
| 739 | // InDeltaSlicef is the same as InDelta, except it compares two slices. |
| 740 | func (a *Assertions) InDeltaSlicef(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{}) bool { |
nothing calls this directly
no test coverage detected