False asserts that the specified value is false. assert.False(t, myBool)
(t TestingT, value bool, msgAndArgs ...interface{})
| 546 | // |
| 547 | // assert.False(t, myBool) |
| 548 | func False(t TestingT, value bool, msgAndArgs ...interface{}) { |
| 549 | if h, ok := t.(tHelper); ok { |
| 550 | h.Helper() |
| 551 | } |
| 552 | if assert.False(t, value, msgAndArgs...) { |
| 553 | return |
| 554 | } |
| 555 | t.FailNow() |
| 556 | } |
| 557 | |
| 558 | // Falsef asserts that the specified value is false. |
| 559 | // |
searching dependent graphs…