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{})
| 1264 | // NotErrorIsf asserts that none of the errors in err's chain matches target. |
| 1265 | // This is a wrapper for errors.Is. |
| 1266 | func (a *Assertions) NotErrorIsf(err error, target error, msg string, args ...interface{}) bool { |
| 1267 | if h, ok := a.t.(tHelper); ok { |
| 1268 | h.Helper() |
| 1269 | } |
| 1270 | return NotErrorIsf(a.t, err, target, msg, args...) |
| 1271 | } |
| 1272 | |
| 1273 | // NotImplements asserts that an object does not implement the specified interface. |
| 1274 | // |
nothing calls this directly
no test coverage detected