FailNowf fails test
(failureMessage string, msg string, args ...interface{})
| 432 | |
| 433 | // FailNowf fails test |
| 434 | func (a *Assertions) FailNowf(failureMessage string, msg string, args ...interface{}) bool { |
| 435 | if h, ok := a.t.(tHelper); ok { |
| 436 | h.Helper() |
| 437 | } |
| 438 | return FailNowf(a.t, failureMessage, msg, args...) |
| 439 | } |
| 440 | |
| 441 | // Failf reports a failure through |
| 442 | func (a *Assertions) Failf(failureMessage string, msg string, args ...interface{}) bool { |