Verifies: SYS-REQ-009
(f *testing.F)
| 135 | |
| 136 | // Verifies: SYS-REQ-009 |
| 137 | func FuzzSetNative(f *testing.F) { |
| 138 | addSeeds(f) |
| 139 | f.Fuzz(func(t *testing.T, data []byte) { |
| 140 | runWithCapture("FuzzSetNative", data, func(d []byte) { _ = FuzzSet(d) }) |
| 141 | }) |
| 142 | } |
| 143 | |
| 144 | // Verifies: SYS-REQ-007 |
| 145 | func FuzzObjectEachNative(f *testing.F) { |
nothing calls this directly
no test coverage detected