MCPcopy
hub / github.com/stretchr/testify / NotEqualValues

Method NotEqualValues

assert/assertion_forward.go:1243–1248  ·  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

1241//
1242// a.NotEqualValues(obj1, obj2)
1243func (a *Assertions) NotEqualValues(expected interface{}, actual interface{}, msgAndArgs ...interface{}) bool {
1244 if h, ok := a.t.(tHelper); ok {
1245 h.Helper()
1246 }
1247 return NotEqualValues(a.t, expected, actual, msgAndArgs...)
1248}
1249
1250// NotEqualValuesf asserts that two objects are not equal even when converted to the same type
1251//

Callers 1

Calls 2

NotEqualValuesFunction · 0.70
HelperMethod · 0.65

Tested by 1