gpt4 book ai didi

visual-studio-code - 是否可以通过 Visual Studio 代码运行 #[tokio::test] 标记的单元测试?

转载 作者:行者123 更新时间:2023-12-03 11:27:03 40 4
gpt4 key购买 nike

是否可以通过 Visual Studio 代码运行 #[tokio::test] 标记的单元测试?我没有看到此类测试用例的“运行测试”选项。

最佳答案

更新 : 当前版本的 VSCode 插件支持通过 #[tokio::test] 标记的运行测试所以这个解决方法不再是必要的。

我有完全相同的问题并通过使用 #[tokio::main] 解决了它和 #[test]而不是 #[tokio::test] :

async fn answer() -> usize {
42
}

#[tokio::main]
#[test]
async fn test_answer() {
assert_eq!(answer().await, 42);
}
以这种方式编写异步单元测试时,Visual Studio Code 能够运行这些测试:
Screenshot of VSCode

关于visual-studio-code - 是否可以通过 Visual Studio 代码运行 #[tokio::test] 标记的单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60482983/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com