(t *testing.T)
| 265 | } |
| 266 | |
| 267 | func TestNotEmpty(t *testing.T) { |
| 268 | t.Parallel() |
| 269 | |
| 270 | NotEmpty(t, "x") |
| 271 | |
| 272 | mockT := new(MockT) |
| 273 | NotEmpty(mockT, "") |
| 274 | if !mockT.Failed { |
| 275 | t.Error("Check should fail") |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | func TestWithinDuration(t *testing.T) { |
| 280 | t.Parallel() |