MCPcopy
hub / github.com/stretchr/testify / NotEqualValuesf

Method NotEqualValuesf

assert/assertion_forward.go:1253–1258  ·  view source on GitHub ↗

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{})

Source from the content-addressed store, hash-verified

1251//
1252// a.NotEqualValuesf(obj1, obj2, "error message %s", "formatted")
1253func (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//

Callers

nothing calls this directly

Calls 2

NotEqualValuesfFunction · 0.70
HelperMethod · 0.65

Tested by

no test coverage detected