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

Method NotEqualValuesf

internal/testify/require/require_forward.go:1185–1190  ·  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

1183//
1184// a.NotEqualValuesf(obj1, obj2, "error message %s", "formatted")
1185func (a *Assertions) NotEqualValuesf(expected interface{}, actual interface{}, msg string, args ...interface{}) {
1186 if h, ok := a.t.(tHelper); ok {
1187 h.Helper()
1188 }
1189 NotEqualValuesf(a.t, expected, actual, msg, args...)
1190}
1191
1192// NotEqualf asserts that the specified values are NOT equal.
1193//

Callers

nothing calls this directly

Calls 2

NotEqualValuesfFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected