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{})
| 1171 | // |
| 1172 | // a.NotEqualValues(obj1, obj2) |
| 1173 | func (a *Assertions) NotEqualValues(expected interface{}, actual interface{}, msgAndArgs ...interface{}) bool { |
| 1174 | if h, ok := a.t.(tHelper); ok { |
| 1175 | h.Helper() |
| 1176 | } |
| 1177 | return NotEqualValues(a.t, expected, actual, msgAndArgs...) |
| 1178 | } |
| 1179 | |
| 1180 | // NotEqualValuesf asserts that two objects are not equal even when converted to the same type |
| 1181 | // |