InEpsilonSlicef is the same as InEpsilon, except it compares each value from two slices.
(expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{})
| 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 { |
| 761 | if h, ok := a.t.(tHelper); ok { |
| 762 | h.Helper() |
| 763 | } |
| 764 | return InEpsilonSlicef(a.t, expected, actual, epsilon, msg, args...) |
| 765 | } |
| 766 | |
| 767 | // InEpsilonf asserts that expected and actual have a relative error less than epsilon |
| 768 | func (a *Assertions) InEpsilonf(expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{}) bool { |
nothing calls this directly
no test coverage detected