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