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

Method NotEqualValues

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

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

Callers

nothing calls this directly

Calls 2

NotEqualValuesFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected