NotEqualValues asserts that two objects are not equal even when converted to the same type a.NotEqualValues(obj1, obj2)
(expected interface{}, actual interface{}, msgAndArgs ...interface{})
| 1241 | // |
| 1242 | // a.NotEqualValues(obj1, obj2) |
| 1243 | func (a *Assertions) NotEqualValues(expected interface{}, actual interface{}, msgAndArgs ...interface{}) bool { |
| 1244 | if h, ok := a.t.(tHelper); ok { |
| 1245 | h.Helper() |
| 1246 | } |
| 1247 | return NotEqualValues(a.t, expected, actual, msgAndArgs...) |
| 1248 | } |
| 1249 | |
| 1250 | // NotEqualValuesf asserts that two objects are not equal even when converted to the same type |
| 1251 | // |