InEpsilonSlicef is the same as InEpsilon, except it compares each value from two slices.
(t TestingT, expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{})
| 391 | |
| 392 | // InEpsilonSlicef is the same as InEpsilon, except it compares each value from two slices. |
| 393 | func InEpsilonSlicef(t TestingT, expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{}) bool { |
| 394 | if h, ok := t.(tHelper); ok { |
| 395 | h.Helper() |
| 396 | } |
| 397 | return InEpsilonSlice(t, expected, actual, epsilon, append([]interface{}{msg}, args...)...) |
| 398 | } |
| 399 | |
| 400 | // IsDecreasingf asserts that the collection is decreasing |
| 401 | // |
no test coverage detected