esp32_test_macro 0.1.1

macro that adds to test result message to end of the test functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
use ::esp32_test_macro::esp32_test;


#[esp32_test]
fn my_function() {
    println!("Inside my_function");
}

fn main() {
    my_function();
}