Verifies: SYS-REQ-015
(f *testing.F)
| 159 | |
| 160 | // Verifies: SYS-REQ-015 |
| 161 | func FuzzParseIntNative(f *testing.F) { |
| 162 | addSeeds(f) |
| 163 | f.Fuzz(func(t *testing.T, data []byte) { |
| 164 | runWithCapture("FuzzParseIntNative", data, func(d []byte) { _ = FuzzParseInt(d) }) |
| 165 | }) |
| 166 | } |
| 167 | |
| 168 | // Verifies: SYS-REQ-012 |
| 169 | func FuzzParseBoolNative(f *testing.F) { |
nothing calls this directly
no test coverage detected