NotEqualValuesf asserts that two objects are not equal even when converted to the same type a.NotEqualValuesf(obj1, obj2, "error message %s", "formatted")
(expected interface{}, actual interface{}, msg string, args ...interface{})
| 1251 | // |
| 1252 | // a.NotEqualValuesf(obj1, obj2, "error message %s", "formatted") |
| 1253 | func (a *Assertions) NotEqualValuesf(expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 1254 | if h, ok := a.t.(tHelper); ok { |
| 1255 | h.Helper() |
| 1256 | } |
| 1257 | return NotEqualValuesf(a.t, expected, actual, msg, args...) |
| 1258 | } |
| 1259 | |
| 1260 | // NotEqualf asserts that the specified values are NOT equal. |
| 1261 | // |
nothing calls this directly
no test coverage detected