(ctx context.Context, t *testing.T)
| 380 | } |
| 381 | |
| 382 | func newAsyncCloser(ctx context.Context, t *testing.T) *asyncCloser { |
| 383 | return &asyncCloser{ |
| 384 | t: t, |
| 385 | ctx: ctx, |
| 386 | isUnblocked: make(chan struct{}), |
| 387 | started: make(chan struct{}), |
| 388 | done: make(chan struct{}), |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | func Test_getWorkspaceAgent(t *testing.T) { |
| 393 | t.Parallel() |
no outgoing calls
no test coverage detected