Function test

Source
pub async fn test(args: Args) -> TestExitCode
Examples found in repository?
examples/app.rs (line 6)
4
5
6
7
async fn main() -> TestExitCode {
  let args = Args::parse_from(std::env::args_os());
  test(args).await
}
More examples
Hide additional examples
examples/fix_args.rs (line 6)
4
5
6
7
async fn main() -> TestExitCode {
  let args = Args::new().debug(true).work_dir("tmp").root_dir("demo");
  test(args).await
}