InDeltaMapValues 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, msgAndArgs ...interface{})
| 700 | |
| 701 | // InDeltaMapValues is the same as InDelta, but it compares all values between two maps. Both maps must have exactly the same keys. |
| 702 | func (a *Assertions) InDeltaMapValues(expected interface{}, actual interface{}, delta float64, msgAndArgs ...interface{}) bool { |
| 703 | if h, ok := a.t.(tHelper); ok { |
| 704 | h.Helper() |
| 705 | } |
| 706 | return InDeltaMapValues(a.t, expected, actual, delta, msgAndArgs...) |
| 707 | } |
| 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 { |
nothing calls this directly
no test coverage detected