AssertionFailedWithDepthf creates an internal error with a stack trace collected at the specified depth. See the doc of `AssertionFailedf()` for more details.
(depth int, format string, args ...interface{})
| 160 | // with a stack trace collected at the specified depth. |
| 161 | // See the doc of `AssertionFailedf()` for more details. |
| 162 | func AssertionFailedWithDepthf(depth int, format string, args ...interface{}) error { |
| 163 | return errutil.AssertionFailedWithDepthf(depth+1, format, args...) |
| 164 | } |
| 165 | |
| 166 | // NewAssertionErrorWithWrappedErrf wraps an error and turns it into |
| 167 | // an assertion error. Both details from the original error and the |
nothing calls this directly
no test coverage detected
searching dependent graphs…