MCPcopy
hub / github.com/cornelk/hashmap / False

Function False

assert/assert.go:61–67  ·  view source on GitHub ↗

False asserts that the specified value is false.

(t *testing.T, value bool, errorMessage ...string)

Source from the content-addressed store, hash-verified

59
60// False asserts that the specified value is false.
61func False(t *testing.T, value bool, errorMessage ...string) {
62 t.Helper()
63 if !value {
64 return
65 }
66 fail(t, "Unexpected true", errorMessage...)
67}

Callers 3

TestInsertFunction · 0.92
TestGetNonExistingItemFunction · 0.92
TestDeleteFunction · 0.92

Calls 1

failFunction · 0.85

Tested by 3

TestInsertFunction · 0.74
TestGetNonExistingItemFunction · 0.74
TestDeleteFunction · 0.74

Used in the wild real call sites across dependent graphs

searching dependent graphs…