EqualValuesf asserts that two objects are equal or convertible to the same types and equal. assert.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted")
(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{})
| 252 | // |
| 253 | // assert.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted") |
| 254 | func EqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) { |
| 255 | if h, ok := t.(tHelper); ok { |
| 256 | h.Helper() |
| 257 | } |
| 258 | if assert.EqualValuesf(t, expected, actual, msg, args...) { |
| 259 | return |
| 260 | } |
| 261 | t.FailNow() |
| 262 | } |
| 263 | |
| 264 | // Equalf asserts that two objects are equal. |
| 265 | // |
no test coverage detected
searching dependent graphs…