NoFileExists checks whether a file does not exist in a given path. It fails if the path points to an existing _file_ only.
(path string, msgAndArgs ...interface{})
| 1125 | // NoFileExists checks whether a file does not exist in a given path. It fails |
| 1126 | // if the path points to an existing _file_ only. |
| 1127 | func (a *Assertions) NoFileExists(path string, msgAndArgs ...interface{}) bool { |
| 1128 | if h, ok := a.t.(tHelper); ok { |
| 1129 | h.Helper() |
| 1130 | } |
| 1131 | return NoFileExists(a.t, path, msgAndArgs...) |
| 1132 | } |
| 1133 | |
| 1134 | // NoFileExistsf checks whether a file does not exist in a given path. It fails |
| 1135 | // if the path points to an existing _file_ only. |
nothing calls this directly
no test coverage detected