actix

Attribute Macro test

Source
#[test]
Expand description

Marks async test functions to use the actix system entry-point.

§Examples

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