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