Attribute Macro ntex_rt_macros::test[][src]

#[test]

Marks async test function to be executed by ntex runtime.

Usage

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