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