Attribute Macro actix_derive::test[][src]

#[test]

Marks async test function to be executed by Actix system.

Examples

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