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