(t *testing.T)
| 242 | } |
| 243 | |
| 244 | func TestNotEmpty(t *testing.T) { |
| 245 | |
| 246 | NotEmpty(t, "x") |
| 247 | |
| 248 | mockT := new(MockT) |
| 249 | NotEmpty(mockT, "") |
| 250 | if !mockT.Failed { |
| 251 | t.Error("Check should fail") |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | func TestWithinDuration(t *testing.T) { |
| 256 |