5 releases
0.1.2 | Jun 18, 2022 |
---|---|
0.1.0 | Jan 10, 2022 |
0.0.3 | Dec 7, 2021 |
0.0.2 | Nov 29, 2021 |
0.0.0 | Nov 29, 2021 |
#50 in #fundamental
2,179 downloads per month
1MB
23K
SLoC
Module :: wtest
Tools for writing and running tests.
Sample
use wtest::*;
//
tests_impls!
{
fn pass1()
{
assert_eq!( true, true );
}
//
fn pass2()
{
assert_eq!( 1, 1 );
}
}
//
tests_index!
{
pass1,
pass2,
}
To add to your project
cargo add wtest --dev
Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/test_trivial
cargo run
Dependencies
~5–13MB
~182K SLoC