4 个版本
0.2.1 | 2024 年 8 月 1 日 |
---|---|
0.2.0 | 2024 年 3 月 26 日 |
0.1.1 | 2024 年 3 月 26 日 |
0.1.0 | 2024 年 3 月 21 日 |
#4 in #async-test
118 每月下载
10KB
181 行
proptest_async
此包扩展了 proptest::proptest!
宏以支持异步测试。
proptest_async::proptest! {
#[test]
async fn my_test() {
// ...
}
}
异步执行器
默认情况下,宏使用 async_std
作为执行器。
您可以使用以下方式选择 tokio
(单线程)
[dependencies]
proptest_async = { version = "*", default-features = false, features = ["tokio"] }
上游
我可能最终会清理它并将其上传到 proptest 项目。
依赖关系
~3–17MB
~177K SLoC