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{})
| 527 | // NoDirExistsf checks whether a directory does not exist in the given path. |
| 528 | // It fails if the path points to an existing _directory_ only. |
| 529 | func NoDirExistsf(t TestingT, path string, msg string, args ...interface{}) bool { |
| 530 | if h, ok := t.(tHelper); ok { |
| 531 | h.Helper() |
| 532 | } |
| 533 | return NoDirExists(t, path, append([]interface{}{msg}, args...)...) |
| 534 | } |
| 535 | |
| 536 | // NoErrorf asserts that a function returned no error (i.e. `nil`). |
| 537 | // |
no test coverage detected
searching dependent graphs…