(t *testing.T)
| 109 | } |
| 110 | |
| 111 | func TestFalseWrapper(t *testing.T) { |
| 112 | t.Parallel() |
| 113 | |
| 114 | assert := New(new(testing.T)) |
| 115 | |
| 116 | if !assert.False(false) { |
| 117 | t.Error("False should return true") |
| 118 | } |
| 119 | if assert.False(true) { |
| 120 | t.Error("False should return false") |
| 121 | } |
| 122 | |
| 123 | } |
| 124 | |
| 125 | func TestExactlyWrapper(t *testing.T) { |
| 126 | t.Parallel() |