NotErrorIsf asserts that at 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{})
| 1212 | // NotErrorIsf asserts that at none of the errors in err's chain matches target. |
| 1213 | // This is a wrapper for errors.Is. |
| 1214 | func (a *Assertions) NotErrorIsf(err error, target error, msg string, args ...interface{}) bool { |
| 1215 | if h, ok := a.t.(tHelper); ok { |
| 1216 | h.Helper() |
| 1217 | } |
| 1218 | return NotErrorIsf(a.t, err, target, msg, args...) |
| 1219 | } |
| 1220 | |
| 1221 | // NotImplements asserts that an object does not implement the specified interface. |
| 1222 | // |
nothing calls this directly
no test coverage detected