(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func TestDecodeSimpleRequest1(t *testing.T) { |
| 51 | _, err := DecodeFromBytes([]byte("\r\n")) |
| 52 | assert.Must(err != nil) |
| 53 | } |
| 54 | |
| 55 | func TestDecodeSimpleRequest2(t *testing.T) { |
| 56 | test := []string{ |
nothing calls this directly
no test coverage detected