FuzzGobDecoder tests decoding a gob format result list.
(fuzz []byte)
| 23 | |
| 24 | // FuzzGobDecoder tests decoding a gob format result list. |
| 25 | func FuzzGobDecoder(fuzz []byte) int { |
| 26 | decoder := NewDecoder(bytes.NewReader(fuzz)) |
| 27 | ok := readAllResults(decoder) |
| 28 | if !ok { |
| 29 | return 0 |
| 30 | } |
| 31 | return 1 |
| 32 | } |
| 33 | |
| 34 | // FuzzCSVDecoder tests decoding a CSV format result list. |
| 35 | func FuzzCSVDecoder(fuzz []byte) int { |
nothing calls this directly
no test coverage detected