parameterized-macro 3.0.0

Attribute macro crate for parameterized tests.
Documentation
1
2
3
4
5
6
use parameterized_macro::parameterized;

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

fn main() {}