Verifies: SYS-REQ-008
(f *testing.F)
| 127 | |
| 128 | // Verifies: SYS-REQ-008 |
| 129 | func FuzzEachKeyNative(f *testing.F) { |
| 130 | addSeeds(f) |
| 131 | f.Fuzz(func(t *testing.T, data []byte) { |
| 132 | runWithCapture("FuzzEachKeyNative", data, func(d []byte) { _ = FuzzEachKey(d) }) |
| 133 | }) |
| 134 | } |
| 135 | |
| 136 | // Verifies: SYS-REQ-009 |
| 137 | func FuzzSetNative(f *testing.F) { |
nothing calls this directly
no test coverage detected