(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestAssertTrue(t *testing.T) { |
| 21 | { |
| 22 | f := &fakeT{} |
| 23 | assertTrue(f, true) |
| 24 | if f.fail == true { |
| 25 | t.Fail() |
| 26 | } |
| 27 | } |
| 28 | { |
| 29 | f := &fakeT{} |
| 30 | assertTrue(f, false) |
| 31 | if f.fail != true { |
| 32 | t.Fail() |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | func TestAssertEqual(t *testing.T) { |
| 38 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…