os-test-framework 0.5.2

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