(data []byte)
| 19 | ) |
| 20 | |
| 21 | func FuzzParseDDecimal(data []byte) int { |
| 22 | _, err := ParseDDecimal(string(data)) |
| 23 | if err != nil { |
| 24 | return 0 |
| 25 | } |
| 26 | return 1 |
| 27 | } |
| 28 | |
| 29 | func FuzzParseDDate(data []byte) int { |
| 30 | _, err := ParseDDate(timeCtx, string(data)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…