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

Function NotEqualValues

internal/testify/require/require.go:1484–1492  ·  view source on GitHub ↗

NotEqualValues asserts that two objects are not equal even when converted to the same type assert.NotEqualValues(t, obj1, obj2)

(t TestingT, expected interface{}, actual interface{}, msgAndArgs ...interface{})

Source from the content-addressed store, hash-verified

1482//
1483// assert.NotEqualValues(t, obj1, obj2)
1484func NotEqualValues(t TestingT, expected interface{}, actual interface{}, msgAndArgs ...interface{}) {
1485 if h, ok := t.(tHelper); ok {
1486 h.Helper()
1487 }
1488 if assert.NotEqualValues(t, expected, actual, msgAndArgs...) {
1489 return
1490 }
1491 t.FailNow()
1492}
1493
1494// NotEqualValuesf asserts that two objects are not equal even when converted to the same type
1495//

Callers 1

NotEqualValuesMethod · 0.70

Calls 3

NotEqualValuesFunction · 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…