Part of the NTest library. Add test cases to the rust test framework using procedural macros.
Example with a single argument:
```rust
fn one_arg(x: u32) { assert!(x == 13 || x == 42) } ```
The test cases above will be parsed at compile time and two rust test functions will be generated instead:
```rust
fn onearg13() { x = 13; assert!(x == 13 || x == 42) }
fn onearg42() { x = 42; assert!(x == 13 || x == 42) } ```
For more examples and information read the documentation.