Seed a new builder. The seed carries the size as well as the initial randomness.
(seed: u64)
| 113 | |
| 114 | /// Seed a new builder. The seed carries the size as well as the initial randomness. |
| 115 | pub fn seeded_builder(seed: u64) -> arbtest::Builder { |
| 116 | arbtest::builder().seed(seed) |
| 117 | } |
| 118 | |
| 119 | /// Run a state machine test as a `#[test]`. |
| 120 | /// |