[][src]Attribute Macro actix_macros::test

#[test]

Marks async test function to be executed by actix runtime.

Usage

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