MCPcopy
hub / github.com/expr-lang/expr / NotEqualValuesf

Function NotEqualValuesf

internal/testify/assert/assertion_format.go:600–605  ·  view source on GitHub ↗

NotEqualValuesf asserts that two objects are not equal even when converted to the same type assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted")

(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{})

Source from the content-addressed store, hash-verified

598//
599// assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted")
600func NotEqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) bool {
601 if h, ok := t.(tHelper); ok {
602 h.Helper()
603 }
604 return NotEqualValues(t, expected, actual, append([]interface{}{msg}, args...)...)
605}
606
607// NotErrorIsf asserts that at none of the errors in err's chain matches target.
608// This is a wrapper for errors.Is.

Callers 2

NotEqualValuesfFunction · 0.92
NotEqualValuesfMethod · 0.70

Calls 2

NotEqualValuesFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…