facilitest/
lib.rs

1pub use facilitest_macros::{build_ident, make_test_fn};
2
3#[macro_export]
4macro_rules! test_p {
5    ($func:path, ($($suffix:ident: ($($arg:expr),*), $expected:expr)*)) => {
6    $(
7        make_test_fn!($func, $suffix, ($($arg,)*), $expected);
8    )*
9    }
10}