(t *testing.T, c config)
| 630 | } |
| 631 | |
| 632 | func testDeleteSession(t *testing.T, c config) { |
| 633 | wd := newRemote(t, c) |
| 634 | if err := DeleteSession(c.addr, wd.SessionID()); err != nil { |
| 635 | t.Fatalf("DeleteSession(%s, %s) returned error: %v", c.addr, wd.SessionID(), err) |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | func testError(t *testing.T, c config) { |
| 640 | wd := newRemote(t, c) |
nothing calls this directly
no test coverage detected
searching dependent graphs…