Verifies: SYS-REQ-002
(f *testing.F)
| 183 | |
| 184 | // Verifies: SYS-REQ-002 |
| 185 | func FuzzGetStringNative(f *testing.F) { |
| 186 | addSeeds(f) |
| 187 | f.Fuzz(func(t *testing.T, data []byte) { |
| 188 | runWithCapture("FuzzGetStringNative", data, func(d []byte) { _ = FuzzGetString(d) }) |
| 189 | }) |
| 190 | } |
| 191 | |
| 192 | // Verifies: SYS-REQ-004 |
| 193 | func FuzzGetFloatNative(f *testing.F) { |
nothing calls this directly
no test coverage detected