MCPcopy Index your code
hub / github.com/expr-lang/expr / NotEqualValuesf

Method NotEqualValuesf

internal/testify/assert/assertion_forward.go:1183–1188  ·  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

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

Callers

nothing calls this directly

Calls 2

NotEqualValuesfFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected