Verifies: SYS-REQ-005
(f *testing.F)
| 207 | |
| 208 | // Verifies: SYS-REQ-005 |
| 209 | func FuzzGetBooleanNative(f *testing.F) { |
| 210 | addSeeds(f) |
| 211 | f.Fuzz(func(t *testing.T, data []byte) { |
| 212 | runWithCapture("FuzzGetBooleanNative", data, func(d []byte) { _ = FuzzGetBoolean(d) }) |
| 213 | }) |
| 214 | } |
| 215 | |
| 216 | // Verifies: SYS-REQ-011 |
| 217 | func FuzzGetUnsafeStringNative(f *testing.F) { |
nothing calls this directly
no test coverage detected