(ctx context.Context, t testing.TB)
| 1468 | } |
| 1469 | |
| 1470 | func newFakeWorkspaceUpdateClient(ctx context.Context, t testing.TB) *fakeWorkspaceUpdateClient { |
| 1471 | return &fakeWorkspaceUpdateClient{ |
| 1472 | ctx: ctx, |
| 1473 | t: t, |
| 1474 | recv: make(chan *updateRecvCall), |
| 1475 | close: make(chan chan<- error), |
| 1476 | } |
| 1477 | } |
| 1478 | |
| 1479 | type updateRecvCall struct { |
| 1480 | resp chan<- *proto.WorkspaceUpdate |
no outgoing calls
no test coverage detected