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

Method NotEqualValues

internal/testify/assert/assertion_forward.go:1173–1178  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

1171//
1172// a.NotEqualValues(obj1, obj2)
1173func (a *Assertions) NotEqualValues(expected interface{}, actual interface{}, msgAndArgs ...interface{}) bool {
1174 if h, ok := a.t.(tHelper); ok {
1175 h.Helper()
1176 }
1177 return NotEqualValues(a.t, expected, actual, msgAndArgs...)
1178}
1179
1180// NotEqualValuesf asserts that two objects are not equal even when converted to the same type
1181//

Callers 1

Calls 2

NotEqualValuesFunction · 0.70
HelperMethod · 0.45

Tested by 1