Verifies: SYS-REQ-013
(f *testing.F)
| 151 | |
| 152 | // Verifies: SYS-REQ-013 |
| 153 | func FuzzParseFloatNative(f *testing.F) { |
| 154 | addSeeds(f) |
| 155 | f.Fuzz(func(t *testing.T, data []byte) { |
| 156 | runWithCapture("FuzzParseFloatNative", data, func(d []byte) { _ = FuzzParseFloat(d) }) |
| 157 | }) |
| 158 | } |
| 159 | |
| 160 | // Verifies: SYS-REQ-015 |
| 161 | func FuzzParseIntNative(f *testing.F) { |
nothing calls this directly
no test coverage detected