MCPcopy
hub / github.com/stretchr/testify / FailNowf

Method FailNowf

assert/assertion_forward.go:434–439  ·  view source on GitHub ↗

FailNowf fails test

(failureMessage string, msg string, args ...interface{})

Source from the content-addressed store, hash-verified

432
433// FailNowf fails test
434func (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
442func (a *Assertions) Failf(failureMessage string, msg string, args ...interface{}) bool {

Callers

nothing calls this directly

Calls 2

FailNowfFunction · 0.70
HelperMethod · 0.65

Tested by

no test coverage detected