(tb testing.TB, v bool)
| 24 | } |
| 25 | |
| 26 | func assertTrue(tb testing.TB, v bool) { |
| 27 | if !v { |
| 28 | tb.Fatal("expected true, but got false") |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | func assertFalse(tb testing.TB, v bool) { |
| 33 | if v { |
no outgoing calls
no test coverage detected
searching dependent graphs…