proptest 1.11.0

Hypothesis-like property-based testing and shrinking.
Documentation
1
2
3
4
5
6
fn main() {}

#[proptest::property_test]
fn my_test(x: i32) {
    assert_eq!(x, x);
}