(t *testing.T)
| 125 | } |
| 126 | |
| 127 | func TestResponse_UnwrapResponse_error(t *testing.T) { |
| 128 | rw := new(testResponseWriter) |
| 129 | res, err := UnwrapResponse(rw) |
| 130 | |
| 131 | assert.Nil(t, res) |
| 132 | assert.EqualError(t, err, "ResponseWriter does not implement 'Unwrap() http.ResponseWriter' interface or unwrap to *echo.Response") |
| 133 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…