Verifies: SYS-REQ-014
(f *testing.F)
| 119 | |
| 120 | // Verifies: SYS-REQ-014 |
| 121 | func FuzzParseStringNative(f *testing.F) { |
| 122 | addSeeds(f) |
| 123 | f.Fuzz(func(t *testing.T, data []byte) { |
| 124 | runWithCapture("FuzzParseStringNative", data, func(d []byte) { _ = FuzzParseString(d) }) |
| 125 | }) |
| 126 | } |
| 127 | |
| 128 | // Verifies: SYS-REQ-008 |
| 129 | func FuzzEachKeyNative(f *testing.F) { |
nothing calls this directly
no test coverage detected