Failf reports a failure through
(failureMessage string, msg string, args ...interface{})
| 441 | |
| 442 | // Failf reports a failure through |
| 443 | func (a *Assertions) Failf(failureMessage string, msg string, args ...interface{}) { |
| 444 | if h, ok := a.t.(tHelper); ok { |
| 445 | h.Helper() |
| 446 | } |
| 447 | Failf(a.t, failureMessage, msg, args...) |
| 448 | } |
| 449 | |
| 450 | // False asserts that the specified value is false. |
| 451 | // |