NotEqualValuesf asserts that two objects are not equal even when converted to the same type require.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted")
(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{})
| 1576 | // |
| 1577 | // require.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted") |
| 1578 | func NotEqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) { |
| 1579 | if h, ok := t.(tHelper); ok { |
| 1580 | h.Helper() |
| 1581 | } |
| 1582 | if assert.NotEqualValuesf(t, expected, actual, msg, args...) { |
| 1583 | return |
| 1584 | } |
| 1585 | t.FailNow() |
| 1586 | } |
| 1587 | |
| 1588 | // NotEqualf asserts that the specified values are NOT equal. |
| 1589 | // |
no test coverage detected