NotErrorIsf asserts that at none of the errors in err's chain matches target. This is a wrapper for errors.Is.
(t TestingT, err error, target error, msg string, args ...interface{})
| 607 | // NotErrorIsf asserts that at none of the errors in err's chain matches target. |
| 608 | // This is a wrapper for errors.Is. |
| 609 | func NotErrorIsf(t TestingT, err error, target error, msg string, args ...interface{}) bool { |
| 610 | if h, ok := t.(tHelper); ok { |
| 611 | h.Helper() |
| 612 | } |
| 613 | return NotErrorIs(t, err, target, append([]interface{}{msg}, args...)...) |
| 614 | } |
| 615 | |
| 616 | // NotImplementsf asserts that an object does not implement the specified interface. |
| 617 | // |
no test coverage detected
searching dependent graphs…