5个版本
0.1.2 | 2022年6月18日 |
---|---|
0.1.0 | 2022年1月10日 |
0.0.3 | 2021年12月7日 |
0.0.2 | 2021年11月29日 |
0.0.0 | 2021年11月29日 |
#50 in #基础
2,179 每月下载量
1MB
23K SLoC
模块 :: wtest
编写和运行测试的工具。
示例
use wtest::*;
//
tests_impls!
{
fn pass1()
{
assert_eq!( true, true );
}
//
fn pass2()
{
assert_eq!( 1, 1 );
}
}
//
tests_index!
{
pass1,
pass2,
}
添加到您的项目
cargo add wtest --dev
从仓库尝试使用
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/test_trivial
cargo run
依赖项
~5–13MB
~182K SLoC