InDeltaSlicef is the same as InDelta, except it compares two slices.
(t TestingT, expected interface{}, actual interface{}, delta float64, msg string, args ...interface{})
| 912 | |
| 913 | // InDeltaSlicef is the same as InDelta, except it compares two slices. |
| 914 | func InDeltaSlicef(t TestingT, expected interface{}, actual interface{}, delta float64, msg string, args ...interface{}) { |
| 915 | if h, ok := t.(tHelper); ok { |
| 916 | h.Helper() |
| 917 | } |
| 918 | if assert.InDeltaSlicef(t, expected, actual, delta, msg, args...) { |
| 919 | return |
| 920 | } |
| 921 | t.FailNow() |
| 922 | } |
| 923 | |
| 924 | // InDeltaf asserts that the two numerals are within delta of each other. |
| 925 | // |
no test coverage detected
searching dependent graphs…