[][src]Attribute Macro runtime_attributes::test

#[test]

Creates an async unit test.

Examples

This example is not tested
#![feature(async_await)]

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