(t *testing.T)
| 141 | } |
| 142 | |
| 143 | func TestFalse(t *testing.T) { |
| 144 | t.Parallel() |
| 145 | |
| 146 | False(t, false) |
| 147 | |
| 148 | mockT := new(MockT) |
| 149 | False(mockT, true) |
| 150 | if !mockT.Failed { |
| 151 | t.Error("Check should fail") |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | func TestContains(t *testing.T) { |
| 156 | t.Parallel() |