Attribute Macro tokio_macros::test_basic[][src]

#[test_basic]
Expand description

Marks async function to be executed by runtime, suitable to test enviornment

Options:

  • max_threads=n - Sets max threads to n.

Usage

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