MCPcopy Index your code
hub / github.com/dnote/dnote / NotEqualf

Function NotEqualf

pkg/assert/assert.go:88–93  ·  view source on GitHub ↗

NotEqualf fails a test if the actual matches the expected

(t *testing.T, a, b interface{}, message string)

Source from the content-addressed store, hash-verified

86
87// NotEqualf fails a test if the actual matches the expected
88func NotEqualf(t *testing.T, a, b interface{}, message string) {
89 ok, m := checkEqual(a, b, message)
90 if ok {
91 t.Fatal(m)
92 }
93}
94
95// DeepEqual fails a test if the actual does not deeply equal the expected
96func DeepEqual(t *testing.T, a, b interface{}, message string) {

Callers

nothing calls this directly

Calls 1

checkEqualFunction · 0.85

Tested by

no test coverage detected