NoDirExistsf checks whether a directory does not exist in the given path. It fails if the path points to an existing _directory_ only.
(t TestingT, path string, msg string, args ...interface{})
| 546 | // NoDirExistsf checks whether a directory does not exist in the given path. |
| 547 | // It fails if the path points to an existing _directory_ only. |
| 548 | func NoDirExistsf(t TestingT, path string, msg string, args ...interface{}) bool { |
| 549 | if h, ok := t.(tHelper); ok { |
| 550 | h.Helper() |
| 551 | } |
| 552 | return NoDirExists(t, path, append([]interface{}{msg}, args...)...) |
| 553 | } |
| 554 | |
| 555 | // NoErrorf asserts that a function returned no error (i.e. `nil`). |
| 556 | // |
no test coverage detected