Skip to main content

os_test_framework/
make_test.rs

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}