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{})
| 1181 | // |
| 1182 | // a.NotEqualValuesf(obj1, obj2, "error message %s", "formatted") |
| 1183 | func (a *Assertions) NotEqualValuesf(expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 1184 | if h, ok := a.t.(tHelper); ok { |
| 1185 | h.Helper() |
| 1186 | } |
| 1187 | return NotEqualValuesf(a.t, expected, actual, msg, args...) |
| 1188 | } |
| 1189 | |
| 1190 | // NotEqualf asserts that the specified values are NOT equal. |
| 1191 | // |
nothing calls this directly
no test coverage detected