Function test
Source pub async fn test(args: Args) -> TestExitCode
async fn main() -> TestExitCode {
let args = Args::parse_from(std::env::args_os());
test(args).await
}
More examples
Hide additional examples
async fn main() -> TestExitCode {
let args = Args::new().debug(true).work_dir("tmp").root_dir("demo");
test(args).await
}