test-casing 0.1.3

Parameterized test cases and test decorators
Documentation
1
2
3
4
5
6
7
8
9
10
use test_casing::{cases, test_casing, TestCases};

const CASES: TestCases<i32> = cases!([1, 2]);

#[test_casing(2, CASS)]
fn tested_function(_arg: i32) {
    // Does nothing
}

fn main() {}