EqualValuesf asserts that two objects are equal or convertible to the larger type and equal. assert.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted")
(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{})
| 118 | // |
| 119 | // assert.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted") |
| 120 | func EqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 121 | if h, ok := t.(tHelper); ok { |
| 122 | h.Helper() |
| 123 | } |
| 124 | return EqualValues(t, expected, actual, append([]interface{}{msg}, args...)...) |
| 125 | } |
| 126 | |
| 127 | // Errorf asserts that a function returned an error (i.e. not `nil`). |
| 128 | // |
no test coverage detected