(b []byte)
| 239 | func (w *testResponseWriter) WriteHeader(_ int) {} |
| 240 | |
| 241 | func (w *testResponseWriter) Write(b []byte) (int, error) { |
| 242 | return w.writer.Write(b) |
| 243 | } |
| 244 | |
| 245 | func TestResponseWriter(t *testing.T) { |
| 246 | m := New() |
no outgoing calls
no test coverage detected