Verifies: SYS-REQ-012
(f *testing.F)
| 167 | |
| 168 | // Verifies: SYS-REQ-012 |
| 169 | func FuzzParseBoolNative(f *testing.F) { |
| 170 | addSeeds(f) |
| 171 | f.Fuzz(func(t *testing.T, data []byte) { |
| 172 | runWithCapture("FuzzParseBoolNative", data, func(d []byte) { _ = FuzzParseBool(d) }) |
| 173 | }) |
| 174 | } |
| 175 | |
| 176 | // Verifies: SYS-REQ-001 |
| 177 | func FuzzTokenStartNative(f *testing.F) { |
nothing calls this directly
no test coverage detected