(f *testing.F)
| 264 | } |
| 265 | |
| 266 | func FuzzICMPDecoder(f *testing.F) { |
| 267 | f.Fuzz(func(t *testing.T, data []byte) { |
| 268 | icmpDecoder := NewICMPDecoder() |
| 269 | icmpDecoder.Decode(RawPacket{Data: data}) |
| 270 | }) |
| 271 | } |
nothing calls this directly
no test coverage detected