(t *testing.T)
| 316 | } |
| 317 | |
| 318 | func TestNotZero(t *testing.T) { |
| 319 | t.Parallel() |
| 320 | |
| 321 | NotZero(t, "x") |
| 322 | |
| 323 | mockT := new(MockT) |
| 324 | NotZero(mockT, "") |
| 325 | if !mockT.Failed { |
| 326 | t.Error("Check should fail") |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | func TestJSONEq_EqualSONString(t *testing.T) { |
| 331 | t.Parallel() |