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

Function NotEqualValuesf

internal/testify/require/require.go:1497–1505  ·  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

1495//
1496// assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted")
1497func NotEqualValuesf(t TestingT, expected interface{}, actual interface{}, msg string, args ...interface{}) {
1498 if h, ok := t.(tHelper); ok {
1499 h.Helper()
1500 }
1501 if assert.NotEqualValuesf(t, expected, actual, msg, args...) {
1502 return
1503 }
1504 t.FailNow()
1505}
1506
1507// NotEqualf asserts that the specified values are NOT equal.
1508//

Callers 1

NotEqualValuesfMethod · 0.70

Calls 3

NotEqualValuesfFunction · 0.92
FailNowMethod · 0.65
HelperMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…