@@ -103,6 +103,21 @@ where
103
103
}
104
104
}
105
105
106
+ #[ cfg( feature = "quickcheck" ) ]
107
+ impl < K , V > quickcheck:: Arbitrary for RangeInclusiveMap < K , V >
108
+ where
109
+ K : quickcheck:: Arbitrary + Ord + StepLite ,
110
+ V : quickcheck:: Arbitrary + Eq ,
111
+ {
112
+ fn arbitrary ( g : & mut quickcheck:: Gen ) -> Self {
113
+ // REVISIT: allocation could be avoided if Gen::gen_size were public (https://github.com/BurntSushi/quickcheck/issues/326#issue-2653601170)
114
+ <alloc:: vec:: Vec < ( RangeInclusive < _ > , _ ) > >:: arbitrary ( g)
115
+ . into_iter ( )
116
+ . filter ( |( range, _) | !range. is_empty ( ) )
117
+ . collect ( )
118
+ }
119
+ }
120
+
106
121
impl < K , V , StepFnsT > RangeInclusiveMap < K , V , StepFnsT > {
107
122
/// Gets an iterator over all pairs of key range and value,
108
123
/// ordered by key range.
@@ -1920,4 +1935,11 @@ mod tests {
1920
1935
const _MAP: RangeInclusiveMap < u32 , bool > = RangeInclusiveMap :: new ( ) ;
1921
1936
#[ cfg( feature = "const_fn" ) ]
1922
1937
const _MAP2: RangeInclusiveMap < u32 , bool > = RangeInclusiveMap :: new_with_step_fns ( ) ;
1938
+
1939
+ #[ cfg( feature = "quickcheck" ) ]
1940
+ quickcheck:: quickcheck! {
1941
+ fn prop( xs: RangeInclusiveMap <usize , usize >) -> bool {
1942
+ xs == xs
1943
+ }
1944
+ }
1923
1945
}
0 commit comments