1use cargo_regression::{Args, TestExitCode}; 2 3#[tokio::main] 4async fn main() -> TestExitCode { 5 let args = Args::new("demo").debug().workdir("tmp"); 6 args.test().await 7}