Configure the seed for the RNG used in `fuzz` mode. The default is `0`.
(&mut self, seed: u64)
| 297 | /// |
| 298 | /// The default is `0`. |
| 299 | pub fn seed(&mut self, seed: u64) -> &mut Self { |
| 300 | self.seed = seed; |
| 301 | self |
| 302 | } |
| 303 | |
| 304 | /// Repeatedly run the given test function, injecting OOMs at different |
| 305 | /// times and checking that it correctly handles them. |
no outgoing calls