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{})
| 384 | |
| 385 | // InEpsilonSlicef is the same as InEpsilon, except it compares each value from two slices. |
| 386 | func InEpsilonSlicef(t TestingT, expected interface{}, actual interface{}, epsilon float64, msg string, args ...interface{}) bool { |
| 387 | if h, ok := t.(tHelper); ok { |
| 388 | h.Helper() |
| 389 | } |
| 390 | return InEpsilonSlice(t, expected, actual, epsilon, append([]interface{}{msg}, args...)...) |
| 391 | } |
| 392 | |
| 393 | // IsDecreasingf asserts that the collection is decreasing |
| 394 | // |
no test coverage detected
searching dependent graphs…