parameterized-macro 3.0.0

Attribute macro crate for parameterized tests.
Documentation
use parameterized_macro::parameterized;

// we want to copy the visibility from the fn

#[parameterized(v = { "a", "b" }, w = { 1, 2 })]
pub(crate) fn my_test(v: &str, w: i32) {}

// which should generate (something along these lines):
//
// ```
// pub(crate) mod fn my_test {
//      #[test]
//      pub(crate) my_test_0(v: &str, w: i32) {}
//
//      #[test]
//      pub(crate) my_test_0(v: &str, w: i32) {}
// }
// ```

fn main() {}