NoDirExistsf checks whether a directory does not exist in the given path. It fails if the path points to an existing _directory_ only.
(path string, msg string, args ...interface{})
| 1054 | // NoDirExistsf checks whether a directory does not exist in the given path. |
| 1055 | // It fails if the path points to an existing _directory_ only. |
| 1056 | func (a *Assertions) NoDirExistsf(path string, msg string, args ...interface{}) { |
| 1057 | if h, ok := a.t.(tHelper); ok { |
| 1058 | h.Helper() |
| 1059 | } |
| 1060 | NoDirExistsf(a.t, path, msg, args...) |
| 1061 | } |
| 1062 | |
| 1063 | // NoError asserts that a function returned no error (i.e. `nil`). |
| 1064 | // |
nothing calls this directly
no test coverage detected