EqualValuesf asserts that two objects are equal or convertible to the larger type and equal. a.EqualValuesf(uint32(123), int32(123), "error message %s", "formatted")
(expected interface{}, actual interface{}, msg string, args ...interface{})
| 220 | // |
| 221 | // a.EqualValuesf(uint32(123), int32(123), "error message %s", "formatted") |
| 222 | func (a *Assertions) EqualValuesf(expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 223 | if h, ok := a.t.(tHelper); ok { |
| 224 | h.Helper() |
| 225 | } |
| 226 | return EqualValuesf(a.t, expected, actual, msg, args...) |
| 227 | } |
| 228 | |
| 229 | // Equalf asserts that two objects are equal. |
| 230 | // |
nothing calls this directly
no test coverage detected