(t *testing.T)
| 75 | } |
| 76 | |
| 77 | func TestFalse(t *testing.T) { |
| 78 | t.Parallel() |
| 79 | |
| 80 | tb := &fakeTB{} |
| 81 | assert.False(tb, "woof", false) |
| 82 | |
| 83 | defer func() { |
| 84 | recover() |
| 85 | simpleassert.Equal(t, "fatals", 1, tb.fatals) |
| 86 | }() |
| 87 | assert.False(tb, "woof", true) |
| 88 | } |
| 89 | |
| 90 | func TestError(t *testing.T) { |
| 91 | t.Parallel() |