(t *testing.T, v bool)
| 69 | } |
| 70 | |
| 71 | func testTrue(t *testing.T, v bool) { |
| 72 | if v { |
| 73 | return |
| 74 | } |
| 75 | t.Fatal("expected value is true, but got false") |
| 76 | } |
| 77 | |
| 78 | // Given a *Node, verify that all the pointers (parent, first child, next sibling, etc.) of |
| 79 | // - the node itself, |
no outgoing calls
no test coverage detected
searching dependent graphs…