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{})
| 109 | // |
| 110 | // assert.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted") |
| 111 | func EqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 112 | if h, ok := t.(tHelper); ok { |
| 113 | h.Helper() |
| 114 | } |
| 115 | return EqualValues(t, expected, actual, append([]interface{}{msg}, args...)...) |
| 116 | } |
| 117 | |
| 118 | // Errorf asserts that a function returned an error (i.e. not `nil`). |
| 119 | // |
no test coverage detected
searching dependent graphs…