Failf reports a failure through
(failureMessage string, msg string, args ...interface{})
| 426 | |
| 427 | // Failf reports a failure through |
| 428 | func (a *Assertions) Failf(failureMessage string, msg string, args ...interface{}) bool { |
| 429 | if h, ok := a.t.(tHelper); ok { |
| 430 | h.Helper() |
| 431 | } |
| 432 | return Failf(a.t, failureMessage, msg, args...) |
| 433 | } |
| 434 | |
| 435 | // False asserts that the specified value is false. |
| 436 | // |