Verifies: SYS-REQ-004
(f *testing.F)
| 191 | |
| 192 | // Verifies: SYS-REQ-004 |
| 193 | func FuzzGetFloatNative(f *testing.F) { |
| 194 | addSeeds(f) |
| 195 | f.Fuzz(func(t *testing.T, data []byte) { |
| 196 | runWithCapture("FuzzGetFloatNative", data, func(d []byte) { _ = FuzzGetFloat(d) }) |
| 197 | }) |
| 198 | } |
| 199 | |
| 200 | // Verifies: SYS-REQ-003 |
| 201 | func FuzzGetIntNative(f *testing.F) { |
nothing calls this directly
no test coverage detected