(data []byte)
| 754 | } |
| 755 | |
| 756 | func (rw *responseWriterWrapper) Write(data []byte) (int, error) { |
| 757 | rw.body = append(rw.body, data...) |
| 758 | return rw.ResponseWriter.Write(data) |
| 759 | } |
| 760 | |
| 761 | func (rw *responseWriterWrapper) BodyLen() int { |
| 762 | return len(rw.body) |
no outgoing calls
no test coverage detected