InEpsilonSlice is the same as InEpsilon, except it compares each value from two slices.
(expected interface{}, actual interface{}, epsilon float64, msgAndArgs ...interface{})
| 750 | |
| 751 | // InEpsilonSlice is the same as InEpsilon, except it compares each value from two slices. |
| 752 | func (a *Assertions) InEpsilonSlice(expected interface{}, actual interface{}, epsilon float64, msgAndArgs ...interface{}) bool { |
| 753 | if h, ok := a.t.(tHelper); ok { |
| 754 | h.Helper() |
| 755 | } |
| 756 | return InEpsilonSlice(a.t, expected, actual, epsilon, msgAndArgs...) |
| 757 | } |
| 758 | |
| 759 | // InEpsilonSlicef is the same as InEpsilon, except it compares each value from two slices. |
| 760 | func (a *Assertions) InEpsilonSlicef(expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{}) bool { |
nothing calls this directly
no test coverage detected