1 2 3 4 5 6 7 8 9 10 11 12
#[macro_export] macro_rules! test { { $name:literal $body:block } => { #[test_case] #[allow(unused_imports)] fn _test() { $crate::__private::_run_test($name, || $body); } }; }