Attribute Macro test

Source
#[test]
Expand description

Marks async test function to be executed by actix runtime.

ยงUsage

#[actix_rt::test]
async fn my_test() {
    assert!(true);
}