InEpsilonf asserts that expected and actual have a relative error less than epsilon
(expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{})
| 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 { |
| 769 | if h, ok := a.t.(tHelper); ok { |
| 770 | h.Helper() |
| 771 | } |
| 772 | return InEpsilonf(a.t, expected, actual, epsilon, msg, args...) |
| 773 | } |
| 774 | |
| 775 | // IsDecreasing asserts that the collection is decreasing |
| 776 | // |
nothing calls this directly
no test coverage detected