(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func TestSuccess(t *testing.T) { |
| 52 | t.Parallel() |
| 53 | |
| 54 | tb := &fakeTB{} |
| 55 | assert.Success(tb, "meow", nil) |
| 56 | |
| 57 | defer func() { |
| 58 | recover() |
| 59 | simpleassert.Equal(t, "fatals", 1, tb.fatals) |
| 60 | }() |
| 61 | assert.Success(tb, "meow", io.EOF) |
| 62 | } |
| 63 | |
| 64 | func TestTrue(t *testing.T) { |
| 65 | t.Parallel() |