test

Attribute Macro test 

Source
#[test]
Expand description

Marks async test function to be executed by ntex runtime.

ยงUsage

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