(rng: &mut Rng)
| 263 | } |
| 264 | |
| 265 | fn gen_verification_status(rng: &mut Rng) -> VerificationStatus { |
| 266 | match rng.below(4) { |
| 267 | 0 => VerificationStatus::Passed, |
| 268 | 1 => VerificationStatus::Failed, |
| 269 | 2 => VerificationStatus::NeedsReview, |
| 270 | _ => VerificationStatus::Skipped, |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | fn gen_verification_check(rng: &mut Rng) -> VerificationCheck { |
| 275 | VerificationCheck { |
no test coverage detected