(t *testing.T)
| 62 | } |
| 63 | |
| 64 | func TestTrue(t *testing.T) { |
| 65 | t.Parallel() |
| 66 | |
| 67 | tb := &fakeTB{} |
| 68 | assert.True(tb, "meow", true) |
| 69 | |
| 70 | defer func() { |
| 71 | recover() |
| 72 | simpleassert.Equal(t, "fatals", 1, tb.fatals) |
| 73 | }() |
| 74 | assert.True(tb, "meow", false) |
| 75 | } |
| 76 | |
| 77 | func TestFalse(t *testing.T) { |
| 78 | t.Parallel() |