(t *testing.T, value bool, msgAndArgs ...interface{})
| 110 | return true |
| 111 | } |
| 112 | func (a fatal) True(t *testing.T, value bool, msgAndArgs ...interface{}) { |
| 113 | t.Helper() |
| 114 | if !value { |
| 115 | a.fail(t, "expected true, got false") |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | func (a nonfatal) False(t *testing.T, value bool, msgAndArgs ...interface{}) bool { |
| 120 | t.Helper() |
no test coverage detected