NotEqualValues asserts that two objects are not equal even when converted to the same type assert.NotEqualValues(t, obj1, obj2)
(t TestingT, expected interface{}, actual interface{}, msgAndArgs ...interface{})
| 1482 | // |
| 1483 | // assert.NotEqualValues(t, obj1, obj2) |
| 1484 | func NotEqualValues(t TestingT, expected interface{}, actual interface{}, msgAndArgs ...interface{}) { |
| 1485 | if h, ok := t.(tHelper); ok { |
| 1486 | h.Helper() |
| 1487 | } |
| 1488 | if assert.NotEqualValues(t, expected, actual, msgAndArgs...) { |
| 1489 | return |
| 1490 | } |
| 1491 | t.FailNow() |
| 1492 | } |
| 1493 | |
| 1494 | // NotEqualValuesf asserts that two objects are not equal even when converted to the same type |
| 1495 | // |
no test coverage detected
searching dependent graphs…