NotEqualValuesf asserts that two objects are not equal even when converted to the same type assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted")
(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{})
| 598 | // |
| 599 | // assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted") |
| 600 | func NotEqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 601 | if h, ok := t.(tHelper); ok { |
| 602 | h.Helper() |
| 603 | } |
| 604 | return NotEqualValues(t, expected, actual, append([]interface{}{msg}, args...)...) |
| 605 | } |
| 606 | |
| 607 | // NotErrorIsf asserts that at none of the errors in err's chain matches target. |
| 608 | // This is a wrapper for errors.Is. |
no test coverage detected
searching dependent graphs…