(ctx context.Context, t testing.TB)
| 1532 | } |
| 1533 | |
| 1534 | func newFakeUpdateHandler(ctx context.Context, t testing.TB) *fakeUpdateHandler { |
| 1535 | return &fakeUpdateHandler{ |
| 1536 | ctx: ctx, |
| 1537 | t: t, |
| 1538 | ch: make(chan tailnet.WorkspaceUpdate), |
| 1539 | } |
| 1540 | } |
| 1541 | |
| 1542 | type fakeUpdateHandler struct { |
| 1543 | ctx context.Context |
no outgoing calls
no test coverage detected