os-test-framework 0.4.0

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 {
    {
        $name:literal $body:block
    } => {
        #[test_case]
        #[allow(unused_imports)]
        fn _test() {
            $crate::__private::_run_test($name, || $body);
        }
    };
}