InEpsilonf asserts that expected and actual have a relative error less than epsilon
(expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{})
| 780 | |
| 781 | // InEpsilonf asserts that expected and actual have a relative error less than epsilon |
| 782 | func (a *Assertions) InEpsilonf(expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{}) bool { |
| 783 | if h, ok := a.t.(tHelper); ok { |
| 784 | h.Helper() |
| 785 | } |
| 786 | return InEpsilonf(a.t, expected, actual, epsilon, msg, args...) |
| 787 | } |
| 788 | |
| 789 | // IsDecreasing asserts that the collection is decreasing |
| 790 | // |
nothing calls this directly
no test coverage detected