InDeltaSlicef is the same as InDelta, except it compares two slices.
(t TestingT, expected interface{}, actual interface{}, delta float64, msg string, args ...interface{})
| 925 | |
| 926 | // InDeltaSlicef is the same as InDelta, except it compares two slices. |
| 927 | func InDeltaSlicef(t TestingT, expected interface{}, actual interface{}, delta float64, msg string, args ...interface{}) { |
| 928 | if h, ok := t.(tHelper); ok { |
| 929 | h.Helper() |
| 930 | } |
| 931 | if assert.InDeltaSlicef(t, expected, actual, delta, msg, args...) { |
| 932 | return |
| 933 | } |
| 934 | t.FailNow() |
| 935 | } |
| 936 | |
| 937 | // InDeltaf asserts that the two numerals are within delta of each other. |
| 938 | // |
no test coverage detected