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