1
2
3
4
5
6
7
8
9
/// Common testkit macros

/// Print fmt info text of the test case
#[macro_export]
macro_rules! test_case {
    ($l:expr) => {
        println!("Run test case: {}", $l);
    };
}