(stdout io.Writer)
| 357 | } |
| 358 | |
| 359 | func withStdout(stdout io.Writer) cio.Opt { |
| 360 | return func(streams *cio.Streams) { |
| 361 | streams.Stdin = bytes.NewReader(nil) |
| 362 | streams.Stdout = stdout |
| 363 | streams.Stderr = io.Discard |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | func TestContainerWait(t *testing.T) { |
| 368 | t.Parallel() |
no outgoing calls
no test coverage detected
searching dependent graphs…