(t *testing.T)
| 289 | } |
| 290 | |
| 291 | func TestNotZero(t *testing.T) { |
| 292 | |
| 293 | NotZero(t, "x") |
| 294 | |
| 295 | mockT := new(MockT) |
| 296 | NotZero(mockT, "") |
| 297 | if !mockT.Failed { |
| 298 | t.Error("Check should fail") |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | func TestJSONEq_EqualSONString(t *testing.T) { |
| 303 | mockT := new(MockT) |