async 인 함수를 테스트 할 필요가 생겼다. #[test] async fn mytest () { println!("this is async fn"); } 이렇게 작성하면 다 될 것 같겠지만, error: async functions cannot be used for tests --> tests/basic_test.rs:66:1 | 66 | async fn mytest() { | ^---- | | | _`async` because of this | | 67 | | println!("this is async fn"); 68 | | } | |_^ 그렇다 cargo test는 async 함수를 지원하지 않는다. 검색 여러모로 검색을 하다보면 tokio-test를 이용하면 된다는 답변이 많이 나오지만, 작지만..