rstest 0.4.1

Rust fixture based test framework. It use procedural macro to implement fixtures and table based tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use rstest::rstest_matrix;

#[rstest_matrix(
    u => [42, 24],
    s => ["str", "trs"],
    t => [("ss", -12), ("tt", -24)]
    ::trace
)]
fn should_fail(u: u32, s: &str, t: (&str, i32)) {
    assert!(false);
}