(n int, input string)
| 14 | ) |
| 15 | |
| 16 | func newReader(n int, input string) *Reader { |
| 17 | return &Reader{rd: strings.NewReader(input), buf: make([]byte, n)} |
| 18 | } |
| 19 | |
| 20 | func TestRead(t *testing.T) { |
| 21 | var b bytes.Buffer |
no outgoing calls
no test coverage detected