This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is not the "normal" way to use proptest. | |
| // Please see https://github.com/AltSysrq/proptest/pull/123 for more context. | |
| use std::collections::BTreeSet; | |
| use proptest::prelude::*; | |
| use proptest::test_runner::{TestRunner, TestRng, RngAlgorithm}; | |
| use proptest::strategy::ValueTree; | |
| #[derive(Clone, Copy, Debug)] |