(tb testing.TB, err error)
| 18 | } |
| 19 | |
| 20 | func assertErr(tb testing.TB, err error) { |
| 21 | if err == nil { |
| 22 | tb.Fatal("expected err, but got nil") |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func assertTrue(tb testing.TB, v bool) { |
| 27 | if !v { |
no outgoing calls
no test coverage detected
searching dependent graphs…