(n uint8)
| 232 | } |
| 233 | |
| 234 | func genBytes(n uint8) []byte { |
| 235 | arr := make([]byte, n) |
| 236 | for i := range arr { |
| 237 | arr[i] = byte(i) |
| 238 | } |
| 239 | return arr |
| 240 | } |
| 241 | |
| 242 | func TestBytesParsing(t *testing.T) { |
| 243 | tests := []struct { |
no outgoing calls
no test coverage detected