MCPcopy Create free account
hub / github.com/devfeel/dotweb / NotEqual

Function NotEqual

test/assert.go:37–42  ·  view source on GitHub ↗
(t *testing.T, expected, actual interface{})

Source from the content-addressed store, hash-verified

35}
36
37func NotEqual(t *testing.T, expected, actual interface{}) {
38 if reflect.DeepEqual(expected, actual) {
39 formattedLog(t, "value should not equal %#v", actual)
40 t.FailNow()
41 }
42}
43
44func Nil(t *testing.T, object interface{}) {
45 if !isNil(object) {

Callers

nothing calls this directly

Calls 1

formattedLogFunction · 0.85

Tested by

no test coverage detected