()
| 37 | } |
| 38 | |
| 39 | func (w *TestResponseWriter) Header() http.Header { |
| 40 | if w.header == nil { |
| 41 | w.header = make(http.Header) |
| 42 | } |
| 43 | return w.header |
| 44 | } |
| 45 | |
| 46 | func (w *TestResponseWriter) Write(data []byte) (int, error) { |
| 47 | fmt.Printf("SSE: %s", string(data)) |
no outgoing calls
no test coverage detected