Verifies: SYS-REQ-003
(f *testing.F)
| 199 | |
| 200 | // Verifies: SYS-REQ-003 |
| 201 | func FuzzGetIntNative(f *testing.F) { |
| 202 | addSeeds(f) |
| 203 | f.Fuzz(func(t *testing.T, data []byte) { |
| 204 | runWithCapture("FuzzGetIntNative", data, func(d []byte) { _ = FuzzGetInt(d) }) |
| 205 | }) |
| 206 | } |
| 207 | |
| 208 | // Verifies: SYS-REQ-005 |
| 209 | func FuzzGetBooleanNative(f *testing.F) { |
nothing calls this directly
no test coverage detected