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

Method NotEqualValues

require/require_forward.go:1244–1249  ·  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

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

Callers

nothing calls this directly

Calls 2

NotEqualValuesFunction · 0.70
HelperMethod · 0.65

Tested by

no test coverage detected