complextesthelper

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

Installation

Add this to your Cargo.toml:

toml [dev-dependencies] complex_test_helper = "0.1.0"

Example

Hint: Run this yourself by running cargo test --example test

```rust use complextesthelper::complex_test;

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

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

[test]

[complex_test(setup, teardown)]

fn testfn() { println!("Content..."); } Output: running 1 test Setup... Content... Teardown... test tests::testfn ... ok ```