EqualValuesf asserts that two objects are equal or convertible to the larger type and equal. require.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted")
(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{})
| 269 | // |
| 270 | // require.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted") |
| 271 | func EqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) { |
| 272 | if h, ok := t.(tHelper); ok { |
| 273 | h.Helper() |
| 274 | } |
| 275 | if assert.EqualValuesf(t, expected, actual, msg, args...) { |
| 276 | return |
| 277 | } |
| 278 | t.FailNow() |
| 279 | } |
| 280 | |
| 281 | // Equalf asserts that two objects are equal. |
| 282 | // |
no test coverage detected