Tools for writing and running tests. The most basic things.
```rust use wtest_basic::*;
//
tests_impls! {
fn pass1() { assert_eq!( true, true ); }
//
fn pass2() { assert_eq!( 1, 1 ); }
}
//
tests_index! { pass1, pass2, } ```
sh
cargo add wtest_basic --dev
sh
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/test_basic_trivial
cargo run