(t *testing.T, value bool, msgAndArgs ...interface{})
| 117 | } |
| 118 | |
| 119 | func (a nonfatal) False(t *testing.T, value bool, msgAndArgs ...interface{}) bool { |
| 120 | t.Helper() |
| 121 | if value { |
| 122 | return a.fail(t, "expected false, got true") |
| 123 | } |
| 124 | return true |
| 125 | } |
| 126 | func (a fatal) False(t *testing.T, value bool, msgAndArgs ...interface{}) { |
| 127 | t.Helper() |
| 128 | if value { |