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