hegeltest 0.32.3

Property-based testing for Rust, built on Hypothesis
Documentation
1
2
3
4
5
6
7
8
9
10
// `#[hegel::explicit_test_case()]` with an empty argument list is rejected:
// an explicit case requires at least one value.

#[hegel::test]
#[hegel::explicit_test_case()]
fn my_test(tc: hegel::TestCase) {
    let _ = tc;
}

fn main() {}