You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on a project which handles a lot of random data, mostly generated from various rand_distr distributions. I would like to implement something like property-based testing, but the particularities of my project allow very few assertions that should be true in all cases. There are a lot more things that "should" hold true in >x% of the cases, but not in 100%.
For instance:
#[cfg(test)]
mod tests {
use proptest::prelude::*;
use rand::rngs::mock::StepRng;
proptest! {
#[test]
fn test_random_thing(initial:u64, step:u64) {
let rng = &mut StepRng::new(initial, step);
let thing = generate_thing(rng);
prop_assert!(......);
}
}
}
Is there any way to specify that the test assertion should hold true for, e.g. at least 80% of the cases? Would this even be part of what proptest is trying to do?
I would gladly try my hand at an implementation, if this would be accepted as a feature, but doesn't exist yet.
The text was updated successfully, but these errors were encountered:
Hi all, congrats on a great project!
I'm working on a project which handles a lot of random data, mostly generated from various
rand_distr
distributions. I would like to implement something like property-based testing, but the particularities of my project allow very few assertions that should be true in all cases. There are a lot more things that "should" hold true in >x% of the cases, but not in 100%.For instance:
Is there any way to specify that the test assertion should hold true for, e.g. at least 80% of the cases? Would this even be part of what
proptest
is trying to do?I would gladly try my hand at an implementation, if this would be accepted as a feature, but doesn't exist yet.
The text was updated successfully, but these errors were encountered: