(t *testing.T, stdout, stderr io.Writer)
| 29 | } |
| 30 | |
| 31 | func newCmdRuntimeOutputContext(t *testing.T, stdout, stderr io.Writer) context.Context { |
| 32 | t.Helper() |
| 33 | return newCmdRuntimeIOContext(t, strings.NewReader(""), stdout, stderr) |
| 34 | } |
| 35 | |
| 36 | func newCmdRuntimeIOContext(t *testing.T, stdin io.Reader, stdout, stderr io.Writer) context.Context { |
| 37 | t.Helper() |
no test coverage detected