parameterized-macro 3.0.0

Attribute macro crate for parameterized tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use parameterized_macro::parameterized;

#[parameterized(
    v = { 1, 2, 3, },
    w = { 1, 2, 3, },
)]
#[parameterized_macro(tokio::test(flavor = "multi_thread", worker_threads = 1))]
async fn my_test(v: u32, w: u32) {
    assert!(true);
}

fn main() {}