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

Function NoFileExistsf

internal/testify/assert/assertion_format.go:551–556  ·  view source on GitHub ↗

NoFileExistsf checks whether a file does not exist in a given path. It fails if the path points to an existing _file_ only.

(t TestingT, path string, msg string, args ...interface{})

Source from the content-addressed store, hash-verified

549// NoFileExistsf checks whether a file does not exist in a given path. It fails
550// if the path points to an existing _file_ only.
551func NoFileExistsf(t TestingT, path string, msg string, args ...interface{}) bool {
552 if h, ok := t.(tHelper); ok {
553 h.Helper()
554 }
555 return NoFileExists(t, path, append([]interface{}{msg}, args...)...)
556}
557
558// NotContainsf asserts that the specified string, list(array, slice...) or map does NOT contain the
559// specified substring or element.

Callers 2

NoFileExistsfFunction · 0.92
NoFileExistsfMethod · 0.70

Calls 2

NoFileExistsFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…