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{})
| 1242 | // |
| 1243 | // a.NotEqualValues(obj1, obj2) |
| 1244 | func (a *Assertions) NotEqualValues(expected interface{}, actual interface{}, msgAndArgs ...interface{}) { |
| 1245 | if h, ok := a.t.(tHelper); ok { |
| 1246 | h.Helper() |
| 1247 | } |
| 1248 | NotEqualValues(a.t, expected, actual, msgAndArgs...) |
| 1249 | } |
| 1250 | |
| 1251 | // NotEqualValuesf asserts that two objects are not equal even when converted to the same type |
| 1252 | // |
nothing calls this directly
no test coverage detected