16 个版本
0.1.14 | 2022 年 7 月 17 日 |
---|---|
0.1.12 | 2022 年 7 月 15 日 |
0.1.10 | 2022 年 6 月 28 日 |
0.1.4 | 2022 年 5 月 9 日 |
0.0.3 | 2021 年 11 月 29 日 |
#39 在 #基础
207 每月下载量
用于 28 个crate(2 个直接使用)
1MB
28K SLoC
模块 :: wtest_basic
编写和运行测试的工具。最基础的功能。
示例
use wtest_basic::*;
//
tests_impls!
{
fn pass1()
{
assert_eq!( true, true );
}
//
fn pass2()
{
assert_eq!( 1, 1 );
}
}
//
tests_index!
{
pass1,
pass2,
}
添加到您的项目中
cargo add wtest_basic --dev
从仓库中尝试
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/test_basic_trivial
cargo run
依赖项
~4–13MB
~158K SLoC