Crates.io MIT licensed

devbox-test-args

Adds parametrization capabilty to #[test] via #[args] attribute macro.

To install via umbrella devbox crate

toml [dev-dependencies] devbox = { version = "0.1" }

Simplest example

```rust

[args(

char_a: 'a';
char_b: 'b' ! "wrong char";

)]

[test]

fn parametrizedtestfor(character:) { asserteq!('a', character, "wrong char"); } ```

Check [#[args]] attribute for full example and usage specification.

License

Licensed under MIT license (LICENSE or https://opensource.org/licenses/MIT)

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Devbox by you, shall be licensed as MIT, without any additional terms or conditions.