(t *testing.T)
| 253 | } |
| 254 | |
| 255 | func TestEmpty(t *testing.T) { |
| 256 | t.Parallel() |
| 257 | |
| 258 | Empty(t, "") |
| 259 | |
| 260 | mockT := new(MockT) |
| 261 | Empty(mockT, "x") |
| 262 | if !mockT.Failed { |
| 263 | t.Error("Check should fail") |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | func TestNotEmpty(t *testing.T) { |
| 268 | t.Parallel() |