NotErrorIsf asserts that none of the errors in err's chain matches target. This is a wrapper for errors.Is.
(err error, target error, msg string, args ...interface{})
| 1301 | // NotErrorIsf asserts that none of the errors in err's chain matches target. |
| 1302 | // This is a wrapper for errors.Is. |
| 1303 | func (a *Assertions) NotErrorIsf(err error, target error, msg string, args ...interface{}) { |
| 1304 | if h, ok := a.t.(tHelper); ok { |
| 1305 | h.Helper() |
| 1306 | } |
| 1307 | NotErrorIsf(a.t, err, target, msg, args...) |
| 1308 | } |
| 1309 | |
| 1310 | // NotImplements asserts that an object does not implement the specified interface. |
| 1311 | // |
nothing calls this directly
no test coverage detected