1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Tools for writing tests. The most basic things.
```
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/test_basic_trivial
cargo run
```
```
cargo add wtest_basic --dev
```
``` rust
use wtest_basic::test_suite;
//
fn _pass1()
{
assert_eq!( true, true );
}
//
fn _pass2()
{
assert_eq!( 1, 1 );
}
//
test_suite!
{
pass1,
pass2,
}
```