(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestMustGzipWithConfig_panics(t *testing.T) { |
| 39 | assert.Panics(t, func() { |
| 40 | GzipWithConfig(GzipConfig{Level: 999}) |
| 41 | }) |
| 42 | } |
| 43 | |
| 44 | func TestGzip_AcceptEncodingHeader(t *testing.T) { |
| 45 | h := Gzip()(func(c *echo.Context) error { |
nothing calls this directly
no test coverage detected
searching dependent graphs…