EqualValuesf asserts that two objects are equal or convertible to the same types and equal. a.EqualValuesf(uint32(123), int32(123), "error message %s", "formatted")
(expected interface{}, actual interface{}, msg string, args ...interface{})
| 202 | // |
| 203 | // a.EqualValuesf(uint32(123), int32(123), "error message %s", "formatted") |
| 204 | func (a *Assertions) EqualValuesf(expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 205 | if h, ok := a.t.(tHelper); ok { |
| 206 | h.Helper() |
| 207 | } |
| 208 | return EqualValuesf(a.t, expected, actual, msg, args...) |
| 209 | } |
| 210 | |
| 211 | // Equalf asserts that two objects are equal. |
| 212 | // |
nothing calls this directly
no test coverage detected