(t *testing.T)
| 95 | } |
| 96 | |
| 97 | func TestFalseWrapper(t *testing.T) { |
| 98 | assert := New(new(testing.T)) |
| 99 | |
| 100 | if !assert.False(false) { |
| 101 | t.Error("False should return true") |
| 102 | } |
| 103 | if assert.False(true) { |
| 104 | t.Error("False should return false") |
| 105 | } |
| 106 | |
| 107 | } |
| 108 | |
| 109 | func TestExactlyWrapper(t *testing.T) { |
| 110 | assert := New(new(testing.T)) |