Skip to main content

os_test_framework/
make_test.rs

1#[macro_export]
2macro_rules! test {
3    {
4        $func:path
5    } => {
6        #[test_case]
7        #[allow(unused_imports)]
8        fn _test() {
9            $crate::__private::_run_test(core::any::type_name_of_val(&$func), $func);
10        }
11    };
12}