complex_test_helper 0.1.0

Extends Rust's testing capabilities by providing several macros for testing complex workflows.
Documentation

fn main() {
    println!("Hello, world!");
}


mod tests {
    use complex_test_helper::complex_test;

    fn setup() {
        println!("Setup...");
    }

    fn teardown() {
        println!("Teardown...");
    }

    #[test]
    #[complex_test(setup, teardown)]
    fn test_fn() {
        println!("Content...");
    }
}