(ctx context.Context, t *testing.T)
| 2319 | } |
| 2320 | |
| 2321 | func newFakeUpdatesController(ctx context.Context, t *testing.T) *fakeWorkspaceUpdatesController { |
| 2322 | return &fakeWorkspaceUpdatesController{ |
| 2323 | ctx: ctx, |
| 2324 | t: t, |
| 2325 | calls: make(chan *newWorkspaceUpdatesCall), |
| 2326 | } |
| 2327 | } |
| 2328 | |
| 2329 | type fakeCloserWaiter struct { |
| 2330 | closeCalls chan chan error |
no outgoing calls
no test coverage detected