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{})
| 1495 | // |
| 1496 | // assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted") |
| 1497 | func NotEqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) { |
| 1498 | if h, ok := t.(tHelper); ok { |
| 1499 | h.Helper() |
| 1500 | } |
| 1501 | if assert.NotEqualValuesf(t, expected, actual, msg, args...) { |
| 1502 | return |
| 1503 | } |
| 1504 | t.FailNow() |
| 1505 | } |
| 1506 | |
| 1507 | // NotEqualf asserts that the specified values are NOT equal. |
| 1508 | // |
no test coverage detected
searching dependent graphs…