FailNowf fails test
(t TestingT, failureMessage string, msg string, args ...interface{})
| 221 | |
| 222 | // FailNowf fails test |
| 223 | func FailNowf(t TestingT, failureMessage string, msg string, args ...interface{}) bool { |
| 224 | if h, ok := t.(tHelper); ok { |
| 225 | h.Helper() |
| 226 | } |
| 227 | return FailNow(t, failureMessage, append([]interface{}{msg}, args...)...) |
| 228 | } |
| 229 | |
| 230 | // Falsef asserts that the specified value is false. |
| 231 | // |