[][src]Attribute Macro runtime_attributes::test

#[test]

Creates an async unit test.

Examples

#![feature(async_await, futures_api)]

#[runtime::test]
async fn main() -> std::io::Result<()> {
    Ok(())
}