(w io.Writer, streamType stdcopy.StdType)
| 80 | } |
| 81 | |
| 82 | func newStdWriter(w io.Writer, streamType stdcopy.StdType) io.Writer { |
| 83 | return &stdWriter{ |
| 84 | Writer: w, |
| 85 | prefix: byte(streamType), |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | func TestComposeService_Logs_Demux(t *testing.T) { |
| 90 | mockCtrl := gomock.NewController(t) |
no outgoing calls
no test coverage detected