13 个版本 (7 个重大更新)
0.9.0 | 2024 年 5 月 11 日 |
---|---|
0.8.0 | 2024 年 3 月 16 日 |
0.7.0 | 2024 年 3 月 16 日 |
0.5.0 | 2023 年 10 月 29 日 |
0.1.5 | 2022 年 7 月 15 日 |
在 开发工具 中排名第 2564
每月下载量 626
在 87 个crate 中使用
120KB
2K SLoC
模块 :: test_tools
编写和运行测试的工具。
基本用法
use test_tools::*;
#[ cfg( feature = "enabled" ) ]
#[ cfg( not( feature = "no_std" ) ) ]
tests_impls!
{
fn pass1()
{
assert_eq!( true, true );
}
//
fn pass2()
{
assert_eq!( 1, 1 );
}
}
//
#[ cfg( feature = "enabled" ) ]
#[ cfg( not( feature = "no_std" ) ) ]
tests_index!
{
pass1,
pass2,
}
添加到您的项目中
cargo add test_tools --dev
从仓库中尝试
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/test_trivial
cargo run
示例
依赖项
~3–12MB
~125K SLoC