Attribute Macro actix::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);
}