HasAssertionFailure returns true if the error or any of its causes is an assertion failure annotation.
(err error)
| 28 | // HasAssertionFailure returns true if the error or any of its causes |
| 29 | // is an assertion failure annotation. |
| 30 | func HasAssertionFailure(err error) bool { return assert.HasAssertionFailure(err) } |
| 31 | |
| 32 | // IsAssertionFailure returns true if the error (not its causes) is an |
| 33 | // assertion failure annotation. Consider using markers.If or |
nothing calls this directly
no test coverage detected
searching dependent graphs…