Tools for writing and running tests. The most basic things.
```rust use wtest_basic::*;
//
fn pass1test() { asserteq!( true, true ); }
//
fn pass2test() { asserteq!( 1, 1 ); }
//
test_suite! { 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