InDeltaMapValuesf is the same as InDelta, but it compares all values between two maps. Both maps must have exactly the same keys.
(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{})
| 708 | |
| 709 | // InDeltaMapValuesf is the same as InDelta, but it compares all values between two maps. Both maps must have exactly the same keys. |
| 710 | func (a *Assertions) InDeltaMapValuesf(expected interface{}, actual interface{}, delta float64, msg string, args ...interface{}) bool { |
| 711 | if h, ok := a.t.(tHelper); ok { |
| 712 | h.Helper() |
| 713 | } |
| 714 | return InDeltaMapValuesf(a.t, expected, actual, delta, msg, args...) |
| 715 | } |
| 716 | |
| 717 | // InDeltaSlice is the same as InDelta, except it compares two slices. |
| 718 | func (a *Assertions) InDeltaSlice(expected interface{}, actual interface{}, delta float64, msgAndArgs ...interface{}) bool { |
nothing calls this directly
no test coverage detected