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{})
| 1087 | // NoFileExists checks whether a file does not exist in a given path. It fails |
| 1088 | // if the path points to an existing _file_ only. |
| 1089 | func (a *Assertions) NoFileExists(path string, msgAndArgs ...interface{}) bool { |
| 1090 | if h, ok := a.t.(tHelper); ok { |
| 1091 | h.Helper() |
| 1092 | } |
| 1093 | return NoFileExists(a.t, path, msgAndArgs...) |
| 1094 | } |
| 1095 | |
| 1096 | // NoFileExistsf checks whether a file does not exist in a given path. It fails |
| 1097 | // if the path points to an existing _file_ only. |
nothing calls this directly
no test coverage detected