MCPcopy Index your code
hub / github.com/expr-lang/expr / False

Method False

internal/testify/require/require_forward.go:440–445  ·  view source on GitHub ↗

False asserts that the specified value is false. a.False(myBool)

(value bool, msgAndArgs ...interface{})

Source from the content-addressed store, hash-verified

438//
439// a.False(myBool)
440func (a *Assertions) False(value bool, msgAndArgs ...interface{}) {
441 if h, ok := a.t.(tHelper); ok {
442 h.Helper()
443 }
444 False(a.t, value, msgAndArgs...)
445}
446
447// Falsef asserts that the specified value is false.
448//

Callers 1

TestFalseWrapperFunction · 0.45

Calls 2

FalseFunction · 0.70
HelperMethod · 0.45

Tested by 1

TestFalseWrapperFunction · 0.36