brute-force 0.2.0

A library for brute forcing arbitrary computations
1
2
3
4
5
6
7
8
9
use crate::{brute_force, Config};

#[test]
#[should_panic]
fn propagate_panics() {
    brute_force(Config::default(), |_: &mut u8| -> Option<()> {
        panic!("Test");
    });
}