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