FailNowf fails test
(failureMessage string, msg string, args ...interface{})
| 418 | |
| 419 | // FailNowf fails test |
| 420 | func (a *Assertions) FailNowf(failureMessage string, msg string, args ...interface{}) bool { |
| 421 | if h, ok := a.t.(tHelper); ok { |
| 422 | h.Helper() |
| 423 | } |
| 424 | return FailNowf(a.t, failureMessage, msg, args...) |
| 425 | } |
| 426 | |
| 427 | // Failf reports a failure through |
| 428 | func (a *Assertions) Failf(failureMessage string, msg string, args ...interface{}) bool { |