sif_macro 0.1.0

Part of Sif: attribute macro for parameterized tests
Documentation
1
2
3
4
5
6
7
8
9
#[macro_use]
extern crate sif_macro;

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

fn main() {}